├── requirements.txt ├── assets ├── 4-ga-7.png ├── 4-ga-8.png ├── 4-ga-9.png ├── 4-ga-2-1.png ├── 4-ga-3-1.png ├── 4-ga-5-1.png └── 5-pages-1.png ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature_request.md │ ├── question.md │ └── bug_report.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── offloading-arxiv-all.yml │ ├── offloading-arxiv-daily.yml │ └── update_paper_links.yml ├── .gitignore ├── docs ├── _config.yml ├── README.md ├── index.md ├── offloading-arxiv-daily.json └── offloading-arxiv-daily-web.json ├── config.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── daily_arxiv.py └── README.md /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | arxiv 3 | pyyaml -------------------------------------------------------------------------------- /assets/4-ga-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JussiKalliola/offloading-arxiv-daily/HEAD/assets/4-ga-7.png -------------------------------------------------------------------------------- /assets/4-ga-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JussiKalliola/offloading-arxiv-daily/HEAD/assets/4-ga-8.png -------------------------------------------------------------------------------- /assets/4-ga-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JussiKalliola/offloading-arxiv-daily/HEAD/assets/4-ga-9.png -------------------------------------------------------------------------------- /assets/4-ga-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JussiKalliola/offloading-arxiv-daily/HEAD/assets/4-ga-2-1.png -------------------------------------------------------------------------------- /assets/4-ga-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JussiKalliola/offloading-arxiv-daily/HEAD/assets/4-ga-3-1.png -------------------------------------------------------------------------------- /assets/4-ga-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JussiKalliola/offloading-arxiv-daily/HEAD/assets/4-ga-5-1.png -------------------------------------------------------------------------------- /assets/5-pages-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JussiKalliola/offloading-arxiv-daily/HEAD/assets/5-pages-1.png -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | # Configuration: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository 2 | 3 | blank_issues_enabled: false 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt.user 2 | CMakeLists_modified.txt 3 | 4 | 5 | build/ 6 | 7 | lib/ 8 | bin/ 9 | 10 | cmake_modules/ 11 | cmake-build-debug/ 12 | .idea/ 13 | .vscode/ 14 | *.pyc 15 | 16 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | 4 | 5 | ## Related Issue 6 | 7 | 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🚀 Feature request 3 | about: Suggest an idea for this project 🏖 4 | title: "" 5 | labels: enhancement 6 | assignees: 7 | --- 8 | 9 | ## 🚀 Feature Request 10 | 11 | 12 | 13 | ## 📎 Additional context 14 | 15 | 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: ❓ Question 3 | about: Ask a question about this project 🎓 4 | title: "" 5 | labels: question 6 | assignees: 7 | --- 8 | 9 | ## Checklist 10 | 11 | 12 | 13 | - [ ] I've searched the project's [`issues`] 14 | 15 | ## ❓ Question 16 | 17 | 18 | 19 | How can I [...]? 20 | 21 | Is it possible to [...]? 22 | 23 | ## 📎 Additional context 24 | 25 | 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🐛 Bug report 3 | about: If something isn't working 🔧 4 | title: "" 5 | labels: bug 6 | assignees: 7 | --- 8 | 9 | ## 🐛 Bug Report 10 | 11 | 12 | 13 | ## 🔬 How To Reproduce 14 | 15 | Steps to reproduce the behavior: 16 | 17 | 1. ... 18 | 19 | ### Environment 20 | 21 | - OS: [e.g. Linux / Windows / macOS] 22 | - Python version, get it with: 23 | 24 | ```bash 25 | python --version 26 | ``` 27 | 28 | ## 📎 Additional context 29 | 30 | 31 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: Offloading Arxiv Daily 2 | description: Automatically Update Computation Offloading Papers Daily using Github Actions (Update Every 8th hours) 3 | show_downloads: true 4 | 5 | github: 6 | zip_url: https://github.com/JussiKalliola/offloading-arxiv-daily 7 | another_url: https://github.com/JussiKalliola/offloading-arxiv-daily 8 | 9 | ## add remote theme 10 | remote_theme: jekyll/minima@v2.5.1 11 | 12 | # minima: 13 | skin: dark 14 | social_links: 15 | github: JussiKalliola 16 | 17 | plugins: 18 | - jekyll-remote-theme # add this line to the plugins list if you already have one 19 | - jekyll-feed 20 | - jekyll-seo-tag 21 | -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- 1 | # TODO: add papers by configuration file 2 | base_url: "https://arxiv.paperswithcode.com/api/v0/papers/" 3 | user_name: "JussiKalliola" 4 | repo_name: "offlading-arxiv-daily" 5 | show_authors: True 6 | show_links: True 7 | show_badge: True 8 | max_results: 10 9 | 10 | publish_readme: True 11 | publish_gitpage: True 12 | 13 | # file paths 14 | json_readme_path: './docs/offloading-arxiv-daily.json' 15 | json_gitpage_path: './docs/offloading-arxiv-daily-web.json' 16 | 17 | md_readme_path: 'README.md' 18 | md_gitpage_path: './docs/index.md' 19 | 20 | # keywords to search 21 | keywords: 22 | "Offloading": 23 | filters: ["Task Offloading", "Computation Offloading"] 24 | -------------------------------------------------------------------------------- /.github/workflows/offloading-arxiv-all.yml: -------------------------------------------------------------------------------- 1 | # This is a basic workflow to help you get started with Actions 2 | 3 | name: Run Arxiv Papers Daily 4 | 5 | # Controls when the workflow will run 6 | on: 7 | # Allows you to run this workflow manually from the Actions tab 8 | workflow_dispatch: 9 | 10 | env: 11 | 12 | GITHUB_USER_NAME: JussiKalliola 13 | GITHUB_USER_EMAIL: kalliolaj@gmail.com 14 | 15 | 16 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 17 | jobs: 18 | # This workflow contains a single job called "build" 19 | build: 20 | name: update 21 | # The type of runner that the job will run on 22 | runs-on: ubuntu-latest 23 | 24 | # Steps represent a sequence of tasks that will be executed as part of the job 25 | steps: 26 | - name: Checkout 27 | uses: actions/checkout@v3 28 | 29 | - name: Set up Python Env 30 | uses: actions/setup-python@v4 31 | with: 32 | python-version: '3.10' 33 | #architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified 34 | - name: Install dependencies 35 | run: | 36 | python -m pip install --upgrade pip 37 | pip install arxiv 38 | pip install requests 39 | pip install pyyaml 40 | 41 | - name: Run daily arxiv 42 | run: | 43 | python daily_arxiv.py 44 | 45 | - name: Push new offloading-arxiv-daily.md 46 | uses: github-actions-x/commit@v2.9 47 | with: 48 | github-token: ${{ secrets.GITHUB_TOKEN }} 49 | commit-message: "Github Action Automatic Update CV Arxiv Papers" 50 | files: README.md docs/offloading-arxiv-daily.json docs/offloading-arxiv-daily-web.json docs/index.md 51 | rebase: 'true' 52 | name: ${{ env.GITHUB_USER_NAME }} 53 | email: ${{ env.GITHUB_USER_EMAIL }} 54 | -------------------------------------------------------------------------------- /.github/workflows/offloading-arxiv-daily.yml: -------------------------------------------------------------------------------- 1 | # This is a basic workflow to help you get started with Actions 2 | 3 | name: Run Arxiv Papers Daily 4 | 5 | # Controls when the workflow will run 6 | on: 7 | # Allows you to run this workflow manually from the Actions tab 8 | workflow_dispatch: 9 | schedule: 10 | - cron: "0 0 */2 * *" 11 | # Triggers the workflow on push or pull request events but only for the main branch 12 | # push: 13 | # branches: 14 | # - main 15 | 16 | env: 17 | 18 | GITHUB_USER_NAME: JussiKalliola 19 | GITHUB_USER_EMAIL: kalliolaj@gmail.com 20 | 21 | 22 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 23 | jobs: 24 | # This workflow contains a single job called "build" 25 | build: 26 | name: update 27 | # The type of runner that the job will run on 28 | runs-on: ubuntu-latest 29 | 30 | # Steps represent a sequence of tasks that will be executed as part of the job 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v3 34 | 35 | - name: Set up Python Env 36 | uses: actions/setup-python@v4 37 | with: 38 | python-version: '3.10' 39 | #architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified 40 | - name: Install dependencies 41 | run: | 42 | python -m pip install --upgrade pip 43 | pip install arxiv 44 | pip install requests 45 | pip install pyyaml 46 | 47 | - name: Run daily arxiv 48 | run: | 49 | python daily_arxiv.py 50 | 51 | - name: Push new offloading-arxiv-daily.md 52 | uses: github-actions-x/commit@v2.9 53 | with: 54 | github-token: ${{ secrets.GITHUB_TOKEN }} 55 | commit-message: "Github Action Automatic Update CV Arxiv Papers" 56 | files: README.md docs/offloading-arxiv-daily.json docs/offloading-arxiv-daily-web.json docs/index.md 57 | rebase: 'true' 58 | name: ${{ env.GITHUB_USER_NAME }} 59 | email: ${{ env.GITHUB_USER_EMAIL }} 60 | -------------------------------------------------------------------------------- /.github/workflows/update_paper_links.yml: -------------------------------------------------------------------------------- 1 | # This is a basic workflow to help you get started with Actions 2 | 3 | name: Run Update Paper Links Weekly 4 | 5 | # Controls when the workflow will run 6 | on: 7 | # Allows you to run this workflow manually from the Actions tab 8 | workflow_dispatch: 9 | schedule: 10 | - cron: "0 8 * * 1" #Run At 08:00 on Monday 11 | # Triggers the workflow on push or pull request events but only for the main branch 12 | # push: 13 | # branches: 14 | # - main 15 | 16 | env: 17 | 18 | GITHUB_USER_NAME: JussiKalliola 19 | GITHUB_USER_EMAIL: kalliolaj@gmail.com 20 | 21 | 22 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 23 | jobs: 24 | # This workflow contains a single job called "build" 25 | build: 26 | name: update 27 | # The type of runner that the job will run on 28 | runs-on: ubuntu-latest 29 | 30 | # Steps represent a sequence of tasks that will be executed as part of the job 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v3 34 | 35 | - name: Set up Python Env 36 | uses: actions/setup-python@v4 37 | with: 38 | python-version: '3.10' 39 | #architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified 40 | - name: Install dependencies 41 | run: | 42 | python -m pip install --upgrade pip 43 | pip install arxiv 44 | pip install requests 45 | pip install pyyaml 46 | 47 | - name: Run daily arxiv 48 | run: | 49 | python daily_arxiv.py --update_paper_links 50 | 51 | - name: Push new offloading-arxiv-daily.md 52 | uses: github-actions-x/commit@v2.9 53 | with: 54 | github-token: ${{ secrets.GITHUB_TOKEN }} 55 | commit-message: "Github Action Automatic Update CV Arxiv Papers" 56 | files: README.md docs/offloading-arxiv-daily.json docs/offloading-arxiv-daily-web.json docs/index.md 57 | rebase: 'true' 58 | name: ${{ env.GITHUB_USER_NAME }} 59 | email: ${{ env.GITHUB_USER_EMAIL }} 60 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 |

2 |


CV-ARXIV-DAILY
Automatically Update CV Papers Daily using Github Actions

3 | 4 |

5 | 6 | 7 | 8 | ## 9 | 10 | This repository hosts the source code for cv-arxiv-daily, an useful sripts to fetch arxiv paper daily. 11 | 12 | ## Overview 13 | 14 | This codebase is composed of the following parts: 15 | 16 | - `daily_arxiv.py`: main scripts to processing given configurations 17 | - `config.yaml`: configuration file of papers' keywords etc. 18 | 19 | ## Usage 20 | 21 |
22 | Table of Contents 23 | 24 | 1. Fork this [repo](https://github.com/Vincentqyw/cv-arxiv-daily) 25 | 2. Edit configs: 26 | - Change `GITHUB_USER_NAME` and `GITHUB_USER_EMAIL` in [cv-arxiv-daily.yml](../.github/workflows/cv-arxiv-daily.yml) and [update_paper_links.yml](../.github/workflows/update_paper_links.yml) 27 | - Change `user_name` in [config.yaml](../config.yaml) 28 | - Push changes to remote repo 29 | 3. Config Github Actions 30 | - Enable read and write permissions: Setting -> Actions -> Workflow permissions, select `Read and write permissions` and save. 31 | ![](../assets/4-ga-2-1.png) 32 | - Enable workflows: Actions -> `I understand my workflows, go ahead and enable them` -> Select `Run Arxiv Papars Daily` in right sidebar and click `Enable workflow` -> click `Run workflow` wait about 1 min until the job update done. The same for the job `Run Update Paper Links Weekly`. 33 | ![](../assets/4-ga-3-1.png) 34 | ![](../assets/4-ga-5-1.png) 35 | ![](../assets/4-ga-7.png) 36 | ![](../assets/4-ga-8.png) 37 | ![](../assets/4-ga-9.png) 38 | 4. Setting Gitpages (optional) 39 | - Setting -> Pages -> Build an deployment. Source: `Deploy from a branch`; Branch select `main` and `/docs` folder, then save. 40 | ![](../assets/5-pages-1.png) 41 | - Now you can open gitpage: https://your_github_usrname.github.io/cv-arxiv-daily 42 | 5. Add new keywords (optional) 43 | - Edit `keywords` in [config.yaml](../config.yaml), you can add more filters or keywords. 44 | - Push changes to remote repo and re-run Github Actions Manually. 45 | 46 |
47 | 48 | ## Release plan 49 | 50 | We are still in the process of fully releasing. Here is the release plan: 51 | 52 | - [x] Configuration file 53 | - [x] Update code link 54 | - [ ] Subscribe & Update alerting 55 | - [ ] Support more `arxiv` filters 56 | - [ ] Archive old papers 57 | - [ ] Language translation ([`ChatGPT`](https://chat.openai.com/chat)) 58 | - [ ] Usefull comments 59 | - [ ] ... 60 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | alpharealcat@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /daily_arxiv.py: -------------------------------------------------------------------------------- 1 | import os 2 | import re 3 | import json 4 | import arxiv 5 | import yaml 6 | import logging 7 | import argparse 8 | import datetime 9 | import requests 10 | 11 | logging.basicConfig(format='[%(asctime)s %(levelname)s] %(message)s', 12 | datefmt='%m/%d/%Y %H:%M:%S', 13 | level=logging.INFO) 14 | 15 | base_url = "https://arxiv.paperswithcode.com/api/v0/papers/" 16 | github_url = "https://api.github.com/search/repositories" 17 | arxiv_url = "http://arxiv.org/" 18 | 19 | def load_config(config_file:str) -> dict: 20 | ''' 21 | config_file: input config file path 22 | return: a dict of configuration 23 | ''' 24 | # make filters pretty 25 | def pretty_filters(**config) -> dict: 26 | keywords = dict() 27 | EXCAPE = '\"' 28 | QUOTA = '' # NO-USE 29 | OR = ' OR ' # TODO 30 | def parse_filters(filters:list): 31 | ret = '' 32 | for idx in range(0,len(filters)): 33 | filter = filters[idx] 34 | if len(filter.split()) > 1: 35 | ret += (EXCAPE + filter + EXCAPE) 36 | else: 37 | ret += (QUOTA + filter + QUOTA) 38 | if idx != len(filters) - 1: 39 | ret += OR 40 | return ret 41 | for k,v in config['keywords'].items(): 42 | keywords[k] = parse_filters(v['filters']) 43 | return keywords 44 | with open(config_file,'r') as f: 45 | config = yaml.load(f,Loader=yaml.FullLoader) 46 | config['kv'] = pretty_filters(**config) 47 | logging.info(f'config = {config}') 48 | return config 49 | 50 | def get_authors(authors, first_author = False): 51 | output = str() 52 | if first_author == False: 53 | output = ", ".join(str(author) for author in authors) 54 | else: 55 | output = authors[0] 56 | return output 57 | def sort_papers(papers): 58 | output = dict() 59 | keys = list(papers.keys()) 60 | keys.sort(reverse=True) 61 | for key in keys: 62 | output[key] = papers[key] 63 | return output 64 | import requests 65 | 66 | def get_code_link(qword:str) -> str: 67 | """ 68 | This short function was auto-generated by ChatGPT. 69 | I only renamed some params and added some comments. 70 | @param qword: query string, eg. arxiv ids and paper titles 71 | @return paper_code in github: string, if not found, return None 72 | """ 73 | # query = f"arxiv:{arxiv_id}" 74 | query = f"{qword}" 75 | params = { 76 | "q": query, 77 | "sort": "stars", 78 | "order": "desc" 79 | } 80 | r = requests.get(github_url, params=params) 81 | results = r.json() 82 | code_link = None 83 | if results["total_count"] > 0: 84 | code_link = results["items"][0]["html_url"] 85 | return code_link 86 | 87 | def get_daily_papers(topic,query="slam", max_results=2): 88 | """ 89 | @param topic: str 90 | @param query: str 91 | @return paper_with_code: dict 92 | """ 93 | # output 94 | content = dict() 95 | content_to_web = dict() 96 | search_engine = arxiv.Search( 97 | query = query, 98 | max_results = max_results, 99 | sort_by = arxiv.SortCriterion.SubmittedDate 100 | ) 101 | 102 | for result in search_engine.results(): 103 | 104 | paper_id = result.get_short_id() 105 | paper_title = result.title 106 | paper_url = result.entry_id 107 | code_url = base_url + paper_id #TODO 108 | paper_abstract = result.summary.replace("\n"," ") 109 | paper_authors = get_authors(result.authors) 110 | paper_first_author = get_authors(result.authors,first_author = True) 111 | primary_category = result.primary_category 112 | publish_time = result.published.date() 113 | update_time = result.updated.date() 114 | comments = result.comment 115 | 116 | logging.info(f"Time = {update_time} title = {paper_title} author = {paper_first_author}") 117 | 118 | # eg: 2108.09112v1 -> 2108.09112 119 | ver_pos = paper_id.find('v') 120 | if ver_pos == -1: 121 | paper_key = paper_id 122 | else: 123 | paper_key = paper_id[0:ver_pos] 124 | paper_url = arxiv_url + 'abs/' + paper_key 125 | 126 | try: 127 | # source code link 128 | r = requests.get(code_url).json() 129 | repo_url = None 130 | if "official" in r and r["official"]: 131 | repo_url = r["official"]["url"] 132 | # TODO: not found, two more chances 133 | # else: 134 | # repo_url = get_code_link(paper_title) 135 | # if repo_url is None: 136 | # repo_url = get_code_link(paper_key) 137 | if repo_url is not None: 138 | content[paper_key] = "|**{}**|**{}**|{} et.al.|[{}]({})|**[link]({})**|\n".format( 139 | update_time,paper_title,paper_first_author,paper_key,paper_url,repo_url) 140 | content_to_web[paper_key] = "- {}, **{}**, {} et.al., Paper: [{}]({}), Code: **[{}]({})**".format( 141 | update_time,paper_title,paper_first_author,paper_url,paper_url,repo_url,repo_url) 142 | 143 | else: 144 | content[paper_key] = "|**{}**|**{}**|{} et.al.|[{}]({})|null|\n".format( 145 | update_time,paper_title,paper_first_author,paper_key,paper_url) 146 | content_to_web[paper_key] = "- {}, **{}**, {} et.al., Paper: [{}]({})".format( 147 | update_time,paper_title,paper_first_author,paper_url,paper_url) 148 | 149 | # TODO: select useful comments 150 | comments = None 151 | if comments != None: 152 | content_to_web[paper_key] += f", {comments}\n" 153 | else: 154 | content_to_web[paper_key] += f"\n" 155 | 156 | except Exception as e: 157 | logging.error(f"exception: {e} with id: {paper_key}") 158 | 159 | data = {topic:content} 160 | data_web = {topic:content_to_web} 161 | return data,data_web 162 | 163 | def update_paper_links(filename): 164 | ''' 165 | weekly update paper links in json file 166 | ''' 167 | def parse_arxiv_string(s): 168 | parts = s.split("|") 169 | date = parts[1].strip() 170 | title = parts[2].strip() 171 | authors = parts[3].strip() 172 | arxiv_id = parts[4].strip() 173 | code = parts[5].strip() 174 | arxiv_id = re.sub(r'v\d+', '', arxiv_id) 175 | return date,title,authors,arxiv_id,code 176 | 177 | with open(filename,"r") as f: 178 | content = f.read() 179 | if not content: 180 | m = {} 181 | else: 182 | m = json.loads(content) 183 | 184 | json_data = m.copy() 185 | 186 | for keywords,v in json_data.items(): 187 | logging.info(f'keywords = {keywords}') 188 | for paper_id,contents in v.items(): 189 | contents = str(contents) 190 | 191 | update_time, paper_title, paper_first_author, paper_url, code_url = parse_arxiv_string(contents) 192 | 193 | contents = "|{}|{}|{}|{}|{}|\n".format(update_time,paper_title,paper_first_author,paper_url,code_url) 194 | json_data[keywords][paper_id] = str(contents) 195 | logging.info(f'paper_id = {paper_id}, contents = {contents}') 196 | 197 | valid_link = False if '|null|' in contents else True 198 | if valid_link: 199 | continue 200 | try: 201 | code_url = base_url + paper_id #TODO 202 | r = requests.get(code_url).json() 203 | repo_url = None 204 | if "official" in r and r["official"]: 205 | repo_url = r["official"]["url"] 206 | if repo_url is not None: 207 | new_cont = contents.replace('|null|',f'|**[link]({repo_url})**|') 208 | logging.info(f'ID = {paper_id}, contents = {new_cont}') 209 | json_data[keywords][paper_id] = str(new_cont) 210 | 211 | except Exception as e: 212 | logging.error(f"exception: {e} with id: {paper_id}") 213 | # dump to json file 214 | with open(filename,"w") as f: 215 | json.dump(json_data,f) 216 | 217 | def update_json_file(filename,data_dict): 218 | ''' 219 | daily update json file using data_dict 220 | ''' 221 | with open(filename,"r") as f: 222 | content = f.read() 223 | if not content: 224 | m = {} 225 | else: 226 | m = json.loads(content) 227 | 228 | json_data = m.copy() 229 | 230 | # update papers in each keywords 231 | for data in data_dict: 232 | for keyword in data.keys(): 233 | papers = data[keyword] 234 | 235 | if keyword in json_data.keys(): 236 | json_data[keyword].update(papers) 237 | else: 238 | json_data[keyword] = papers 239 | 240 | with open(filename,"w") as f: 241 | json.dump(json_data,f) 242 | 243 | def json_to_md(filename,md_filename, 244 | task = '', 245 | to_web = False, 246 | use_title = True, 247 | use_tc = True, 248 | show_badge = True, 249 | use_b2t = True): 250 | """ 251 | @param filename: str 252 | @param md_filename: str 253 | @return None 254 | """ 255 | def pretty_math(s:str) -> str: 256 | ret = '' 257 | match = re.search(r"\$.*\$", s) 258 | if match == None: 259 | return s 260 | math_start,math_end = match.span() 261 | space_trail = space_leading = '' 262 | if s[:math_start][-1] != ' ' and '*' != s[:math_start][-1]: space_trail = ' ' 263 | if s[math_end:][0] != ' ' and '*' != s[math_end:][0]: space_leading = ' ' 264 | ret += s[:math_start] 265 | ret += f'{space_trail}${match.group()[1:-1].strip()}${space_leading}' 266 | ret += s[math_end:] 267 | return ret 268 | 269 | DateNow = datetime.date.today() 270 | DateNow = str(DateNow) 271 | DateNow = DateNow.replace('-','.') 272 | 273 | with open(filename,"r") as f: 274 | content = f.read() 275 | if not content: 276 | data = {} 277 | else: 278 | data = json.loads(content) 279 | 280 | # clean README.md if daily already exist else create it 281 | with open(md_filename,"w+") as f: 282 | pass 283 | 284 | # write data into README.md 285 | with open(md_filename,"a+") as f: 286 | 287 | if (use_title == True) and (to_web == True): 288 | f.write("---\n" + "layout: default\n" + "---\n\n") 289 | 290 | if show_badge == True: 291 | f.write(f"[![Contributors][contributors-shield]][contributors-url]\n") 292 | f.write(f"[![Forks][forks-shield]][forks-url]\n") 293 | f.write(f"[![Stargazers][stars-shield]][stars-url]\n") 294 | f.write(f"[![Issues][issues-shield]][issues-url]\n\n") 295 | 296 | if use_title == True: 297 | #f.write(("


CV-ARXIV-DAILY" 298 | # "
Automatically Update CV Papers Daily

\n")) 299 | f.write("## Updated on " + DateNow + "\n") 300 | else: 301 | f.write("> Updated on " + DateNow + "\n") 302 | 303 | # TODO: add usage 304 | f.write("> Usage instructions: [here](./docs/README.md#usage)\n\n") 305 | 306 | #Add: table of contents 307 | if use_tc == True: 308 | f.write("
\n") 309 | f.write(" Table of Contents\n") 310 | f.write("
    \n") 311 | for keyword in data.keys(): 312 | day_content = data[keyword] 313 | if not day_content: 314 | continue 315 | kw = keyword.replace(' ','-') 316 | f.write(f"
  1. {keyword}
  2. \n") 317 | f.write("
\n") 318 | f.write("
\n\n") 319 | 320 | for keyword in data.keys(): 321 | day_content = data[keyword] 322 | if not day_content: 323 | continue 324 | # Here modify the header and file format if needed. E.g., make it dropdown. 325 | # the head of each part 326 | f.write(f"## {keyword}\n\n") 327 | 328 | if use_title == True : 329 | if to_web == False: 330 | f.write("|Publish Date|Title|Authors|PDF|Code|\n" + "|---|---|---|---|---|\n") 331 | else: 332 | f.write("| Publish Date | Title | Authors | PDF | Code |\n") 333 | f.write("|:---------|:-----------------------|:---------|:------|:------|\n") 334 | 335 | # sort papers by date 336 | day_content = sort_papers(day_content) 337 | 338 | for _,v in day_content.items(): 339 | if v is not None: 340 | f.write(pretty_math(v)) # make latex pretty 341 | 342 | f.write(f"\n") 343 | 344 | #Add: back to top 345 | if use_b2t: 346 | top_info = f"#Updated on {DateNow}" 347 | top_info = top_info.replace(' ','-').replace('.','') 348 | f.write(f"

(back to top)

\n\n") 349 | 350 | if show_badge == True: 351 | # we don't like long string, break it! 352 | f.write((f"[contributors-shield]: https://img.shields.io/github/" 353 | f"contributors/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge\n")) 354 | f.write((f"[contributors-url]: https://github.com/JussiKalliola/" 355 | f"offloading-arxiv-daily/graphs/contributors\n")) 356 | f.write((f"[forks-shield]: https://img.shields.io/github/forks/JussiKalliola/" 357 | f"offloading-arxiv-daily.svg?style=for-the-badge\n")) 358 | f.write((f"[forks-url]: https://github.com/JussiKalliola/" 359 | f"offloading-arxiv-daily/network/members\n")) 360 | f.write((f"[stars-shield]: https://img.shields.io/github/stars/JussiKalliola/" 361 | f"offloading-arxiv-daily.svg?style=for-the-badge\n")) 362 | f.write((f"[stars-url]: https://github.com/JussiKalliola/" 363 | f"offloading-arxiv-daily/stargazers\n")) 364 | f.write((f"[issues-shield]: https://img.shields.io/github/issues/JussiKalliola/" 365 | f"offloading-arxiv-daily.svg?style=for-the-badge\n")) 366 | f.write((f"[issues-url]: https://github.com/JussiKalliola/" 367 | f"offloading-arxiv-daily/issues\n\n")) 368 | 369 | logging.info(f"{task} finished") 370 | 371 | def demo(**config): 372 | # TODO: use config 373 | data_collector = [] 374 | data_collector_web= [] 375 | 376 | keywords = config['kv'] 377 | max_results = config['max_results'] 378 | publish_readme = config['publish_readme'] 379 | publish_gitpage = config['publish_gitpage'] 380 | show_badge = config['show_badge'] 381 | 382 | b_update = config['update_paper_links'] 383 | logging.info(f'Update Paper Link = {b_update}') 384 | if config['update_paper_links'] == False: 385 | logging.info(f"GET daily papers begin") 386 | for topic, keyword in keywords.items(): 387 | logging.info(f"Keyword: {topic}") 388 | data, data_web = get_daily_papers(topic, query = keyword, 389 | max_results = max_results) 390 | data_collector.append(data) 391 | data_collector_web.append(data_web) 392 | print("\n") 393 | logging.info(f"GET daily papers end") 394 | 395 | # 1. update README.md file 396 | if publish_readme: 397 | json_file = config['json_readme_path'] 398 | md_file = config['md_readme_path'] 399 | # update paper links 400 | if config['update_paper_links']: 401 | update_paper_links(json_file) 402 | else: 403 | # update json data 404 | update_json_file(json_file,data_collector) 405 | # json data to markdown 406 | json_to_md(json_file,md_file, task ='Update Readme', \ 407 | show_badge = show_badge) 408 | 409 | # 2. update docs/index.md file (to gitpage) 410 | if publish_gitpage: 411 | json_file = config['json_gitpage_path'] 412 | md_file = config['md_gitpage_path'] 413 | # TODO: duplicated update paper links!!! 414 | if config['update_paper_links']: 415 | update_paper_links(json_file) 416 | else: 417 | update_json_file(json_file,data_collector) 418 | json_to_md(json_file, md_file, task ='Update GitPage', \ 419 | to_web = True, show_badge = show_badge, \ 420 | use_tc=False, use_b2t=False) 421 | 422 | 423 | if __name__ == "__main__": 424 | parser = argparse.ArgumentParser() 425 | parser.add_argument('--config_path',type=str, default='config.yaml', 426 | help='configuration file path') 427 | parser.add_argument('--update_paper_links', default=False, 428 | action="store_true",help='whether to update paper links etc.') 429 | args = parser.parse_args() 430 | config = load_config(args.config_path) 431 | config = {**config, 'update_paper_links':args.update_paper_links} 432 | demo(**config) 433 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | [![Contributors][contributors-shield]][contributors-url] 6 | [![Forks][forks-shield]][forks-url] 7 | [![Stargazers][stars-shield]][stars-url] 8 | [![Issues][issues-shield]][issues-url] 9 | 10 | ## Updated on 2025.11.05 11 | > Usage instructions: [here](./docs/README.md#usage) 12 | 13 | ## Offloading 14 | 15 | | Publish Date | Title | Authors | PDF | Code | 16 | |:---------|:-----------------------|:---------|:------|:------| 17 | |**2025-07-21**|**Vehicular Cloud Computing: A cost-effective alternative to Edge Computing in 5G networks**|Rosario Patanè et.al.|[2507.15670](http://arxiv.org/abs/2507.15670)|null| 18 | |**2025-07-17**|**QTCAJOSA: Low-Complexity Joint Offloading and Subchannel Allocation for NTN-Enabled IoMT**|Alejandro Flores C. et.al.|[2507.13242](http://arxiv.org/abs/2507.13242)|null| 19 | |**2025-07-17**|**Energy-Efficient RSMA-enabled Low-altitude MEC Optimization Via Generative AI-enhanced Deep Reinforcement Learning**|Xudong Wang et.al.|[2507.12910](http://arxiv.org/abs/2507.12910)|null| 20 | |**2025-07-16**|**MOFCO: Mobility- and Migration-Aware Task Offloading in Three-Layer Fog Computing Environments**|Soheil Mahdizadeh et.al.|[2507.12028](http://arxiv.org/abs/2507.12028)|null| 21 | |**2025-07-14**|**A Model Aware AIGC Task Offloading Algorithm in IIoT Edge Computing**|Xin Wang et.al.|[2507.11560](http://arxiv.org/abs/2507.11560)|null| 22 | |**2025-07-12**|**Reliable Task Offloading in MEC through Transmission Diversity and Jamming-Aware Scheduling**|Ghazal Asemian et.al.|[2507.09352](http://arxiv.org/abs/2507.09352)|null| 23 | |**2025-07-12**|**Fast and Adaptive Task Management in MEC: A Deep Learning Approach Using Pointer Networks**|Arild Yonkeu et.al.|[2507.09346](http://arxiv.org/abs/2507.09346)|null| 24 | |**2025-07-12**|**Meeting Deadlines in Motion: Deep RL for Real-Time Task Offloading in Vehicular Edge Networks**|Mahsa Paknejad et.al.|[2507.09341](http://arxiv.org/abs/2507.09341)|null| 25 | |**2025-07-08**|**Hierarchical Task Offloading for UAV-Assisted Vehicular Edge Computing via Deep Reinforcement Learning**|Hongbao Li et.al.|[2507.05722](http://arxiv.org/abs/2507.05722)|null| 26 | |**2025-07-01**|**Robust Task Offloading for UAV-enabled Secure MEC Against Aerial Eavesdropper**|Can Cui et.al.|[2507.00710](http://arxiv.org/abs/2507.00710)|null| 27 | |**2025-06-20**|**RL-based Adaptive Task Offloading in Mobile-Edge Computing for Future IoT Networks**|Ziad Qais Al Abbasi et.al.|[2506.22474](http://arxiv.org/abs/2506.22474)|null| 28 | |**2025-06-27**|**Joint Task Offloading and Resource Allocation in Low-Altitude MEC via Graph Attention Diffusion**|Yifan Xue et.al.|[2506.21933](http://arxiv.org/abs/2506.21933)|null| 29 | |**2025-06-18**|**Joint Computation Offloading and Resource Allocation for Uncertain Maritime MEC via Cooperation of UAVs and Vessels**|Jiahao You et.al.|[2506.15225](http://arxiv.org/abs/2506.15225)|null| 30 | |**2025-06-16**|**Delay-optimal Congestion-aware Routing and Computation Offloading in Arbitrary Network**|Jinkun Zhang et.al.|[2506.13626](http://arxiv.org/abs/2506.13626)|null| 31 | |**2025-06-13**|**OSI Stack Redesign for Quantum Networks: Requirements, Technologies, Challenges, and Future Directions**|Shakil Ahmed et.al.|[2506.12195](http://arxiv.org/abs/2506.12195)|null| 32 | |**2025-06-10**|**Optimal Task Offloading with Firm Deadlines for Mobile Edge Computing Systems**|Khai Doan et.al.|[2506.09180](http://arxiv.org/abs/2506.09180)|null| 33 | |**2025-06-18**|**Computation Capacity Maximization for Pinching Antennas-Assisted Wireless Powered MEC Systems**|Peng Liu et.al.|[2506.07598](http://arxiv.org/abs/2506.07598)|null| 34 | |**2025-06-04**|**Knowledge-Guided Attention-Inspired Learning for Task Offloading in Vehicle Edge Computing**|Ke Ma et.al.|[2506.04456](http://arxiv.org/abs/2506.04456)|null| 35 | |**2025-06-03**|**FAuNO: Semi-Asynchronous Federated Reinforcement Learning Framework for Task Offloading in Edge Systems**|Frederico Metelo et.al.|[2506.02668](http://arxiv.org/abs/2506.02668)|null| 36 | |**2025-06-03**|**A Novel Deep Reinforcement Learning Method for Computation Offloading in Multi-User Mobile Edge Computing with Decentralization**|Nguyen Chi Long et.al.|[2506.02458](http://arxiv.org/abs/2506.02458)|null| 37 | |**2025-06-02**|**Improving compiler support for SIMD offload using Arm Streaming SVE**|Mohamed Husain Noor Mohamed et.al.|[2506.02233](http://arxiv.org/abs/2506.02233)|null| 38 | |**2025-05-28**|**Real-World Modeling of Computation Offloading for Neural Networks with Early Exits and Splits**|Jan Danek et.al.|[2505.22149](http://arxiv.org/abs/2505.22149)|null| 39 | |**2025-05-19**|**Learning Driven Elastic Task Multi-Connectivity Immersive Computing Systems**|Babak Badnava et.al.|[2505.13331](http://arxiv.org/abs/2505.13331)|null| 40 | |**2025-05-16**|**Enhancing Secrecy Energy Efficiency in RIS-Aided Aerial Mobile Edge Computing Networks: A Deep Reinforcement Learning Approach**|Aly Sabri Abdalla et.al.|[2505.10815](http://arxiv.org/abs/2505.10815)|null| 41 | |**2025-05-10**|**Distributionally Robust Contract Theory for Edge AIGC Services in Teleoperation**|Zijun Zhan et.al.|[2505.06678](http://arxiv.org/abs/2505.06678)|**[link](https://github.com/zijun0819/dro-contract-theory)**| 42 | |**2025-05-07**|**Joint Task Offloading and Channel Allocation in Spatial-Temporal Dynamic for MEC Networks**|Tianyi Shi et.al.|[2505.04272](http://arxiv.org/abs/2505.04272)|null| 43 | |**2025-05-01**|**SeLR: Sparsity-enhanced Lagrangian Relaxation for Computation Offloading at the Edge**|Negar Erfaniantaghvayi et.al.|[2505.00848](http://arxiv.org/abs/2505.00848)|**[link](https://github.com/Negar-Erfanian/SeLR)**| 44 | |**2025-04-29**|**Intelligent Task Offloading in VANETs: A Hybrid AI-Driven Approach for Low-Latency and Energy Efficiency**|Tariq Qayyum et.al.|[2504.20735](http://arxiv.org/abs/2504.20735)|null| 45 | |**2025-04-25**|**Joint Resource Estimation and Trajectory Optimization for eVTOL-involved CR network: A Monte Carlo Tree Search-based Approach**|Kai Xiong et.al.|[2504.18031](http://arxiv.org/abs/2504.18031)|null| 46 | |**2025-04-24**|**Cooperative Task Offloading through Asynchronous Deep Reinforcement Learning in Mobile Edge Computing for Future Networks**|Yuelin Liu et.al.|[2504.17526](http://arxiv.org/abs/2504.17526)|null| 47 | |**2025-04-23**|**Preemption Aware Task Scheduling for Priority and Deadline Constrained DNN Inference Task Offloading in Homogeneous Mobile-Edge Networks**|Jamie Cotter et.al.|[2504.16792](http://arxiv.org/abs/2504.16792)|null| 48 | |**2025-04-23**|**MEC Task Offloading in AIoT: A User-Centric DRL Model Splitting Inference Scheme**|Weixi Li et.al.|[2504.16729](http://arxiv.org/abs/2504.16729)|null| 49 | |**2025-04-21**|**To Offload or Not To Offload: Model-driven Comparison of Edge-native and On-device Processing**|Nathan Ng et.al.|[2504.15162](http://arxiv.org/abs/2504.15162)|null| 50 | |**2025-04-18**|**Task Assignment and Exploration Optimization for Low Altitude UAV Rescue via Generative AI Enhanced Multi-agent Reinforcement Learning**|Xin Tang et.al.|[2504.13554](http://arxiv.org/abs/2504.13554)|null| 51 | |**2025-04-13**|**PLS-Assisted Offloading for Edge Computing-Enabled Post-Quantum Security in Resource-Constrained Devices**|Hamid Amiriara et.al.|[2504.09437](http://arxiv.org/abs/2504.09437)|null| 52 | |**2025-04-10**|**Hybrid Reinforcement Learning-based Sustainable Multi-User Computation Offloading for Mobile Edge-Quantum Computing**|Minrui Xu et.al.|[2504.08134](http://arxiv.org/abs/2504.08134)|null| 53 | |**2025-03-26**|**UAV-Assisted MEC for Disaster Response: Stackelberg Game-Based Resource Optimization**|Yafei Guo et.al.|[2504.07119](http://arxiv.org/abs/2504.07119)|null| 54 | |**2025-04-01**|**Efficient and Sustainable Task Offloading in UAV-Assisted MEC Systems via Meta Deep Reinforcement Learning**|Maryam Farajzadeh Dehkordi et.al.|[2504.00453](http://arxiv.org/abs/2504.00453)|null| 55 | |**2025-03-26**|**Sequential Task Assignment and Resource Allocation in V2X-Enabled Mobile Edge Computing**|Yufei Ye et.al.|[2503.20256](http://arxiv.org/abs/2503.20256)|null| 56 | |**2025-03-25**|**A Reliable and Efficient 5G Vehicular MEC: Guaranteed Task Completion with Minimal Latency**|Mahsa Paknejad et.al.|[2503.19320](http://arxiv.org/abs/2503.19320)|null| 57 | |**2025-03-25**|**Partitioned Task Offloading for Low-Latency and Reliable Task Completion in 5G MEC**|Parisa Fard Moshiri et.al.|[2503.19319](http://arxiv.org/abs/2503.19319)|null| 58 | |**2025-03-21**|**Rotatable RIS-Assisted Edge Computing: Orientation, Task Offloading, and Resource Optimization**|Bin Li et.al.|[2503.16879](http://arxiv.org/abs/2503.16879)|null| 59 | |**2025-03-11**|**Joint Semantic Transmission and Resource Allocation for Intelligent Computation Task Offloading in MEC Systems**|Yuanpeng Zheng et.al.|[2503.08001](http://arxiv.org/abs/2503.08001)|null| 60 | |**2025-03-06**|**Energy-Aware Task Offloading for Rotatable STAR-RIS-Enhanced Mobile Edge Computing Systems**|Dongdong Yang et.al.|[2503.04397](http://arxiv.org/abs/2503.04397)|null| 61 | |**2025-03-05**|**Multi-Agent DRL for Queue-Aware Task Offloading in Hierarchical MEC-Enabled Air-Ground Networks**|Muhammet Hevesli et.al.|[2503.03391](http://arxiv.org/abs/2503.03391)|null| 62 | |**2025-02-27**|**Orchestrating Joint Offloading and Scheduling for Low-Latency Edge SLAM**|Yao Zhang et.al.|[2502.16495](http://arxiv.org/abs/2502.16495)|null| 63 | |**2025-02-21**|**Computation Offloading Strategies in Integrated Terrestrial and Non-Terrestrial Networks**|Muhammad Ahmed Mohsin et.al.|[2502.15903](http://arxiv.org/abs/2502.15903)|null| 64 | |**2025-02-18**|**A Survey on DRL based UAV Communications and Networking: DRL Fundamentals, Applications and Implementations**|Wei Zhao et.al.|[2502.12875](http://arxiv.org/abs/2502.12875)|null| 65 | |**2025-02-14**|**IRS-assisted Edge Computing for Vehicular Networks: A Generative Diffusion Model-based Stackelberg Game Approach**|Yixian Wang et.al.|[2502.10149](http://arxiv.org/abs/2502.10149)|null| 66 | |**2025-02-12**|**Generative AI-Enhanced Cooperative MEC of UAVs and Ground Stations for Unmanned Surface Vehicles**|Jiahao You et.al.|[2502.08119](http://arxiv.org/abs/2502.08119)|null| 67 | |**2025-02-10**|**Task Offloading in Vehicular Edge Computing using Deep Reinforcement Learning: A Survey**|Ashab Uddin et.al.|[2502.06963](http://arxiv.org/abs/2502.06963)|null| 68 | |**2025-02-27**|**A Survey on Video Analytics in Cloud-Edge-Terminal Collaborative Systems**|Linxiao Gong et.al.|[2502.06581](http://arxiv.org/abs/2502.06581)|null| 69 | |**2025-02-07**|**Uplink Rate-Splitting Multiple Access for Mobile Edge Computing with Short-Packet Communications**|Jiawei Xu et.al.|[2502.04827](http://arxiv.org/abs/2502.04827)|null| 70 | |**2025-02-05**|**Lightweight Authenticated Task Offloading in 6G-Cloud Vehicular Twin Networks**|Sarah Al-Shareeda et.al.|[2502.03403](http://arxiv.org/abs/2502.03403)|null| 71 | |**2025-02-06**|**Advancements in Mobile Edge Computing and Open RAN: Leveraging Artificial Intelligence and Machine Learning for Wireless Systems**|Ryan Barker et.al.|[2502.02886](http://arxiv.org/abs/2502.02886)|null| 72 | |**2025-01-30**|**Distributed Offloading in Multi-Access Edge Computing Systems: A Mean-Field Perspective**|Shubham Aggarwal et.al.|[2501.18718](http://arxiv.org/abs/2501.18718)|null| 73 | |**2025-01-28**|**Network Slice-based Low-Altitude Intelligent Network for Advanced Air Mobility**|Kai Xiong et.al.|[2501.17014](http://arxiv.org/abs/2501.17014)|null| 74 | |**2025-01-26**|**Vehicular Multi-Tier Distributed Computing with Hybrid THz-RF Transmission in Satellite-Terrestrial Integrated Networks**|Ni Zhang et.al.|[2501.15577](http://arxiv.org/abs/2501.15577)|null| 75 | |**2025-01-25**|**Enhancing Disaster Resilience with UAV-Assisted Edge Computing: A Reinforcement Learning Approach to Managing Heterogeneous Edge Devices**|Talha Azfar et.al.|[2501.15305](http://arxiv.org/abs/2501.15305)|null| 76 | |**2025-01-25**|**Reinforcement Learning Controlled Adaptive PSO for Task Offloading in IIoT Edge Computing**|Minod Perera et.al.|[2501.15203](http://arxiv.org/abs/2501.15203)|**[link](https://github.com/MinodRashmika/APSO_SAC_IIOT)**| 77 | |**2025-01-31**|**UAV-Assisted MEC Architecture for Collaborative Task Offloading in Urban IoT Environment**|Subhrajit Barick et.al.|[2501.15164](http://arxiv.org/abs/2501.15164)|null| 78 | |**2025-01-24**|**Serving Long-Context LLMs at the Mobile Edge: Test-Time Reinforcement Learning-based Model Caching and Inference Offloading**|Minrui Xu et.al.|[2501.14205](http://arxiv.org/abs/2501.14205)|null| 79 | |**2025-01-22**|**Joint Task Offloading and User Scheduling in 5G MEC under Jamming Attacks**|Mohammadreza Amini et.al.|[2501.13227](http://arxiv.org/abs/2501.13227)|null| 80 | |**2025-01-20**|**Secure Resource Allocation via Constrained Deep Reinforcement Learning**|Jianfei Sun et.al.|[2501.11557](http://arxiv.org/abs/2501.11557)|null| 81 | |**2025-01-20**|**A Dynamic Improvement Framework for Vehicular Task Offloading**|Qianren Li et.al.|[2501.11333](http://arxiv.org/abs/2501.11333)|null| 82 | |**2025-01-02**|**Multi-task Domain Adaptation for Computation Offloading in Edge-intelligence Networks**|Runxin Han et.al.|[2501.07585](http://arxiv.org/abs/2501.07585)|null| 83 | |**2025-01-11**|**Task Delay and Energy Consumption Minimization for Low-altitude MEC via Evolutionary Multi-objective Deep Reinforcement Learning**|Geng Sun et.al.|[2501.06410](http://arxiv.org/abs/2501.06410)|null| 84 | |**2025-01-08**|**Intelligent Task Offloading: Advanced MEC Task Offloading and Resource Management in 5G Networks**|Alireza Ebrahimi et.al.|[2501.06242](http://arxiv.org/abs/2501.06242)|null| 85 | |**2024-12-24**|**Energy Efficient Computation Offloading and Virtual Connection Control in Uplink Small Cell Networks**|Davoud Yousefi et.al.|[2501.06194](http://arxiv.org/abs/2501.06194)|null| 86 | |**2025-01-10**|**Fully Decentralized Computation Offloading in Priority-Driven Edge Computing Systems**|Shubham Aggarwal et.al.|[2501.05660](http://arxiv.org/abs/2501.05660)|null| 87 | |**2025-01-05**|**Towards Beyond Communications 6G Networks Status and Challenges**|Vasileios Tsekenis et.al.|[2501.04496](http://arxiv.org/abs/2501.04496)|null| 88 | |**2025-01-08**|**A 5G-Edge Architecture for Computational Offloading of Computer Vision Applications**|Marcelo V. B. da Silva et.al.|[2501.04267](http://arxiv.org/abs/2501.04267)|null| 89 | |**2025-01-06**|**Online Collaborative Resource Allocation and Task Offloading for Multi-access Edge Computing**|Geng Sun et.al.|[2501.02952](http://arxiv.org/abs/2501.02952)|null| 90 | |**2025-01-06**|**An Infrastructure Software Perspective Toward Computation Offloading between Executable Specifications and Foundation Models**|Dezhi Ran et.al.|[2501.02829](http://arxiv.org/abs/2501.02829)|null| 91 | |**2025-01-01**|**Communication Efficient Cooperative Edge AI via Event-Triggered Computation Offloading**|You Zhou et.al.|[2501.02001](http://arxiv.org/abs/2501.02001)|null| 92 | |**2024-12-30**|**Retrieval-Augmented Generation for Mobile Edge Computing via Large Language Model**|Runtao Ren et.al.|[2412.20820](http://arxiv.org/abs/2412.20820)|null| 93 | |**2025-01-05**|**Joint Task Offloading and Routing in Wireless Multi-hop Networks Using Biased Backpressure Algorithm**|Zhongyuan Zhao et.al.|[2412.15385](http://arxiv.org/abs/2412.15385)|null| 94 | |**2024-12-18**|**Robust UAV Jittering and Task Scheduling in Mobile Edge Computing with Data Compression**|Bin Li et.al.|[2412.13676](http://arxiv.org/abs/2412.13676)|null| 95 | |**2024-12-17**|**A Measurement-Based Spatially Consistent Channel Model for Distributed MIMO in Industrial Environments**|Christian Nelson et.al.|[2412.12646](http://arxiv.org/abs/2412.12646)|null| 96 | |**2024-11-16**|**Distributed Collaborative Inference System in Next-Generation Networks and Communication**|Chuan Zhang et.al.|[2412.12102](http://arxiv.org/abs/2412.12102)|null| 97 | |**2024-12-16**|**Latency Minimization for Movable Antennas-Enabled Relay-aided D2D Mobile Edge Computing Communication Systems**|Yue Xiu et.al.|[2412.11351](http://arxiv.org/abs/2412.11351)|null| 98 | |**2024-12-14**|**Cluster-Based Multi-Agent Task Scheduling for Space-Air-Ground Integrated Networks**|Zhiying Wang et.al.|[2412.10700](http://arxiv.org/abs/2412.10700)|null| 99 | |**2024-12-15**|**GDSG: Graph Diffusion-based Solution Generator for Optimization Problems in MEC Networks**|Ruihuai Liang et.al.|[2412.08296](http://arxiv.org/abs/2412.08296)|**[link](https://github.com/qiyu3816/gdsg)**| 100 | |**2024-12-11**|**Collaborative Inference for Large Models with Task Offloading and Early Exiting**|Zuan Xie et.al.|[2412.08284](http://arxiv.org/abs/2412.08284)|null| 101 | |**2024-12-09**|**BECS: A Privacy-Preserving Computing Sharing Mechanism in 6G Computing Power Network**|Kun Yan et.al.|[2412.06196](http://arxiv.org/abs/2412.06196)|null| 102 | |**2024-12-06**|**Distributed Massive MIMO-Aided Task Offloading in Satellite-Terrestrial Integrated Multi-Tier VEC Networks**|Yixin Liu et.al.|[2412.04793](http://arxiv.org/abs/2412.04793)|null| 103 | |**2024-11-28**|**Traffic-cognitive Slicing for Resource-efficient Offloading with Dual-distillation DRL in Multi-edge Systems**|Ting Xiaoyang et.al.|[2412.04192](http://arxiv.org/abs/2412.04192)|null| 104 | |**2024-12-11**|**Hierarchical Learning for IRS-Assisted MEC Systems with Rate-Splitting Multiple Access**|Yinyu Wu et.al.|[2412.04002](http://arxiv.org/abs/2412.04002)|null| 105 | |**2024-12-05**|**Offloading Revenue Maximization in Multi-UAV-Assisted Mobile Edge Computing for Video Stream**|Bin Li et.al.|[2412.03965](http://arxiv.org/abs/2412.03965)|null| 106 | |**2024-11-30**|**Incentive-Driven Task Offloading and Collaborative Computing in Device-Assisted MEC Networks**|Yang Li et.al.|[2412.00370](http://arxiv.org/abs/2412.00370)|**[link](https://github.com/CPNGroup/Multi_Level_EC)**| 107 | |**2024-11-26**|**Joint Resource Optimization, Computation Offloading and Resource Slicing for Multi-Edge Traffic-Cognitive Networks**|Ting Xiaoyang et.al.|[2411.17782](http://arxiv.org/abs/2411.17782)|null| 108 | |**2024-11-24**|**Algorithmics and Complexity of Cost-Driven Task Offloading with Submodular Optimization in Edge-Cloud Environments**|Longkun Guo et.al.|[2411.15687](http://arxiv.org/abs/2411.15687)|null| 109 | |**2024-11-07**|**Real-Time Aware IP-Networking for Resource-Constrained Embedded Devices**|Ilja Behnke et.al.|[2411.15150](http://arxiv.org/abs/2411.15150)|null| 110 | |**2024-11-16**|**Task Offloading for Vehicular Edge Computing Based on Improved Hotstuff under Parking Assistance**|Guoling Liang et.al.|[2411.10770](http://arxiv.org/abs/2411.10770)|null| 111 | |**2024-11-15**|**A Combined Environmental Monitoring Framework based on WSN Clustering and VANET Edge Computation Offloading**|Basilis Mamalis et.al.|[2411.10560](http://arxiv.org/abs/2411.10560)|null| 112 | |**2024-11-12**|**Space-Air-Ground Integrated MEC-Assisted Industrial Cyber-Physical Systems: An Online Decentralized Optimization Approach**|Long He et.al.|[2411.09712](http://arxiv.org/abs/2411.09712)|null| 113 | |**2024-11-12**|**Decentralized Network Topology Design for Task Offloading in Mobile Edge Computing**|Ke Ma et.al.|[2411.07485](http://arxiv.org/abs/2411.07485)|null| 114 | |**2024-12-02**|**JC5A: Service Delay Minimization for Aerial MEC-assisted Industrial Cyber-Physical Systems**|Geng Sun et.al.|[2411.04762](http://arxiv.org/abs/2411.04762)|null| 115 | |**2024-10-30**|**Profiling AI Models: Towards Efficient Computation Offloading in Heterogeneous Edge AI Systems**|Juan Marcelo Parra-Ullauri et.al.|[2411.00859](http://arxiv.org/abs/2411.00859)|null| 116 | |**2024-12-13**|**Distributed Computation Offloading for Energy Provision Minimization in WP-MEC Networks with Multiple HAPs**|Xiaoying Liu et.al.|[2411.00397](http://arxiv.org/abs/2411.00397)|null| 117 | |**2024-10-21**|**Secure Collaborative Computation Offloading and Resource Allocation in Cache-Assisted Ultra-Dense IoT Networks With Multi-Slope Channels**|Tianqing Zhou et.al.|[2410.14142](http://arxiv.org/abs/2410.14142)|null| 118 | |**2024-10-16**|**Joint Data Compression, Secure Multi-Part Collaborative Task Offloading and Resource Assignment in Ultra-Dense Networks**|Tianqing Zhou et.al.|[2410.12186](http://arxiv.org/abs/2410.12186)|null| 119 | |**2024-10-14**|**Content Caching-Assisted Vehicular Edge Computing Using Multi-Agent Graph Attention Reinforcement Learning**|Jinjin Shen et.al.|[2410.10071](http://arxiv.org/abs/2410.10071)|null| 120 | |**2024-10-09**|**VEC-Sim: A Simulation Platform for Evaluating Service Caching and Computation Offloading Policies in Vehicular Edge Networks**|Fan Wu et.al.|[2410.06934](http://arxiv.org/abs/2410.06934)|null| 121 | |**2024-10-09**|**Variations in Multi-Agent Actor-Critic Frameworks for Joint Optimizations in UAV Swarm Networks: Recent Evolution, Challenges, and Directions**|Muhammad Morshed Alam et.al.|[2410.06627](http://arxiv.org/abs/2410.06627)|null| 122 | |**2024-10-08**|**Deep Reinforcement Learning for Delay-Optimized Task Offloading in Vehicular Fog Computing**|Mohammad Parsa Toopchinezhad et.al.|[2410.03472](http://arxiv.org/abs/2410.03472)|**[link](https://github.com/Procedurally-Generated-Human/VFC-Offloading-RL)**| 123 | |**2024-09-30**|**Edge Intelligence in Satellite-Terrestrial Networks with Hybrid Quantum Computing**|Siyue Huang et.al.|[2409.19869](http://arxiv.org/abs/2409.19869)|null| 124 | |**2024-09-13**|**Dynamic Pricing based Near-Optimal Resource Allocation for Elastic Edge Offloading**|Yun Xia et.al.|[2409.18977](http://arxiv.org/abs/2409.18977)|null| 125 | |**2024-09-27**|**Online and Utility-Power Efficient Task Scheduling in Homogeneous Fog Networks**|Fatemeh Ebadi et.al.|[2409.18675](http://arxiv.org/abs/2409.18675)|null| 126 | |**2024-09-26**|**Multi-UAV Enabled MEC Networks: Optimizing Delay through Intelligent 3D Trajectory Planning and Resource Allocation**|Zhiying Wang et.al.|[2409.17882](http://arxiv.org/abs/2409.17882)|null| 127 | |**2024-09-26**|**Computation Pre-Offloading for MEC-Enabled Vehicular Networks via Trajectory Prediction**|Ting Zhang et.al.|[2409.17681](http://arxiv.org/abs/2409.17681)|null| 128 | |**2024-09-26**|**SLO-Aware Task Offloading within Collaborative Vehicle Platoons**|Boris Sedlak et.al.|[2409.17667](http://arxiv.org/abs/2409.17667)|null| 129 | |**2024-09-25**|**A QoE-Aware Split Inference Accelerating Algorithm for NOMA-based Edge Intelligence**|Xin Yuan et.al.|[2409.16537](http://arxiv.org/abs/2409.16537)|null| 130 | |**2024-09-24**|**Mean Age of Information in Partial Offloading Mobile Edge Computing Networks**|Ying Dong et.al.|[2409.16115](http://arxiv.org/abs/2409.16115)|null| 131 | |**2024-09-23**|**Energy-Efficient Multi-UAV-Enabled MEC Systems with Space-Air-Ground Integrated Networks**|Wenchao Liu et.al.|[2409.14782](http://arxiv.org/abs/2409.14782)|null| 132 | |**2024-09-17**|**Dynamic DAG-Application Scheduling for Multi-Tier Edge Computing in Heterogeneous Networks**|Xiang Li et.al.|[2409.10839](http://arxiv.org/abs/2409.10839)|null| 133 | |**2024-09-12**|**Tera-SpaceCom: GNN-based Deep Reinforcement Learning for Joint Resource Allocation and Task Offloading in TeraHertz Band Space Networks**|Zhifeng Hu et.al.|[2409.07911](http://arxiv.org/abs/2409.07911)|null| 134 | |**2024-11-26**|**PEERNet: An End-to-End Profiling Tool for Real-Time Networked Robotic Systems**|Aditya Narayanan et.al.|[2409.06078](http://arxiv.org/abs/2409.06078)|**[link](https://github.com/utaustin-swarmlab/peernet)**| 135 | |**2024-09-04**|**A Joint Time and Energy-Efficient Federated Learning-based Computation Offloading Method for Mobile Edge Computing**|Anwesha Mukherjee et.al.|[2409.02548](http://arxiv.org/abs/2409.02548)|null| 136 | |**2024-09-04**|**AirFogSim: A Light-Weight and Modular Simulator for UAV-Integrated Vehicular Fog Computing**|Zhiwei Wei et.al.|[2409.02518](http://arxiv.org/abs/2409.02518)|**[link](https://github.com/zhiweiwei-nami/airfogsim)**| 137 | |**2024-08-28**|**Joint Offloading and Beamforming Design in Integrating Sensing, Communication, and Computing Systems: A Distributed Approach**|Peng Liu et.al.|[2408.15481](http://arxiv.org/abs/2408.15481)|null| 138 | |**2024-08-27**|**DRL-Based Federated Self-Supervised Learning for Task Offloading and Resource Allocation in ISAC-Enabled Vehicle Edge Computing**|Xueying Gu et.al.|[2408.14831](http://arxiv.org/abs/2408.14831)|**[link](https://github.com/qiongwu86/federated-ssl-task-offloading-and-resource-allocation)**| 139 | |**2024-08-24**|**Mobile Edge Computing Networks: Online Low-Latency and Fresh Service Provisioning**|Yuhan Yi et.al.|[2408.13605](http://arxiv.org/abs/2408.13605)|null| 140 | |**2024-08-24**|**Unleashing Collaborative Computing for Adaptive Video Streaming with Multi-objective Optimization in Satellite Terrestrial Networks**|Zhishu Shen et.al.|[2408.13512](http://arxiv.org/abs/2408.13512)|null| 141 | |**2024-08-23**|**Active STAR-RIS Empowered Edge System for Enhanced Energy Efficiency and Task Management**|Pyae Sone Aung et.al.|[2408.12860](http://arxiv.org/abs/2408.12860)|null| 142 | |**2024-08-11**|**DeepAir: A Multi-Agent Deep Reinforcement Learning Based Scheme for an Unknown User Location Problem**|Baris Yamansavascilar et.al.|[2408.05712](http://arxiv.org/abs/2408.05712)|null| 143 | |**2024-12-19**|**Generative AI as a Service in 6G Edge-Cloud: Generation Task Offloading by In-context Learning**|Hao Zhou et.al.|[2408.02549](http://arxiv.org/abs/2408.02549)|null| 144 | |**2024-08-04**|**Distributionally Robust Optimization for Computation Offloading in Aerial Access Networks**|Guanwang Jiang et.al.|[2408.02037](http://arxiv.org/abs/2408.02037)|null| 145 | |**2024-08-02**|**Deep progressive reinforcement learning-based flexible resource scheduling framework for IRS and UAV-assisted MEC system**|Li Dong et.al.|[2408.01248](http://arxiv.org/abs/2408.01248)|null| 146 | |**2024-07-31**|**Priority and Stackelberg Game-Based Incentive Task Allocation for Device-Assisted MEC Networks**|Yang Li et.al.|[2407.21352](http://arxiv.org/abs/2407.21352)|null| 147 | |**2024-07-29**|**Sustainable Task Offloading in Secure UAV-assisted Smart Farm Networks: A Multi-Agent DRL with Action Mask Approach**|Tingnan Bao et.al.|[2407.19657](http://arxiv.org/abs/2407.19657)|null| 148 | |**2024-07-26**|**Task Offloading in Fog Computing with Deep Reinforcement Learning: Future Research Directions Based on Security and Efficiency Enhancements**|Amir Pakmehr et.al.|[2407.19121](http://arxiv.org/abs/2407.19121)|null| 149 | |**2024-07-20**|**QoS Aware Mixed-Criticality Task Scheduling in Vehicular Edge Cloud System**|Suvarthi Sarkar et.al.|[2407.14793](http://arxiv.org/abs/2407.14793)|null| 150 | |**2024-06-24**|**Digital Twinning of a Pressurized Water Reactor Startup Operation and Partial Computational Offloading in In-network Computing-Assisted Multiaccess Edge Computing**|Ibrahim Aliyu et.al.|[2407.12011](http://arxiv.org/abs/2407.12011)|null| 151 | |**2024-07-16**|**Finite State Machines-Based Path-Following Collaborative Computing Strategy for Emergency UAV Swarms**|Jialin Hu et.al.|[2407.11531](http://arxiv.org/abs/2407.11531)|null| 152 | |**2024-07-16**|**Digital Twin Vehicular Edge Computing Network: Task Offloading and Resource Allocation**|Yu Xie et.al.|[2407.11310](http://arxiv.org/abs/2407.11310)|**[link](https://github.com/qiongwu86/digital-twin-vehicular-edge-computing-network_task-offloading-and-resource-allocation)**| 153 | |**2025-01-02**|**Joint Optimization of Completion Ratio and Latency of Offloaded Tasks with Multiple Priority Levels in 5G Edge**|Parisa Fard Moshiri et.al.|[2407.11155](http://arxiv.org/abs/2407.11155)|null| 154 | |**2024-06-28**|**Online Multi-Task Offloading for Semantic-Aware Edge Computing Systems**|Xuyang Chen et.al.|[2407.11018](http://arxiv.org/abs/2407.11018)|null| 155 | |**2024-08-02**|**Globally-Constrained Decentralized Optimization with Variable Coupling**|Dandan Wang et.al.|[2407.10770](http://arxiv.org/abs/2407.10770)|null| 156 | |**2024-07-08**|**Cost-Efficient Computation Offloading in SAGIN: A Deep Reinforcement Learning and Perception-Aided Approach**|Yulan Gao et.al.|[2407.05571](http://arxiv.org/abs/2407.05571)|null| 157 | |**2024-07-04**|**Multi-Time Scale Service Caching and Pricing in MEC Systems with Dynamic Program Popularity**|Yiming Chen et.al.|[2407.03804](http://arxiv.org/abs/2407.03804)|null| 158 | |**2024-07-03**|**Cooperative Multi-Agent Deep Reinforcement Learning Methods for UAV-aided Mobile Edge Computing Networks**|Mintae Kim et.al.|[2407.03280](http://arxiv.org/abs/2407.03280)|null| 159 | |**2024-07-01**|**Optimizing Age of Information in Vehicular Edge Computing with Federated Graph Neural Network Multi-Agent Reinforcement Learning**|Wenhua Wang et.al.|[2407.02342](http://arxiv.org/abs/2407.02342)|**[link](https://github.com/qiongwu86/optimizing-aoi-in-vec-with-federated-graph-neural-network-multi-agent-reinforcement-learning)**| 160 | |**2024-04-08**|**Towards a Partial Computation offloading in In-networking Computing-Assisted MEC: A Digital Twin Approach**|Ibrahim Aliyu et.al.|[2407.01540](http://arxiv.org/abs/2407.01540)|null| 161 | |**2024-07-01**|**Terahertz Communication Multi-UAV-Assisted Mobile Edge Computing System**|Heekang Song et.al.|[2407.01086](http://arxiv.org/abs/2407.01086)|null| 162 | |**2024-07-01**|**Reconfigurable Intelligent Computational Surfaces for MEC-Assisted Autonomous Driving Networks: Design Optimization and Analysis**|Xueyao Zhang et.al.|[2407.00933](http://arxiv.org/abs/2407.00933)|null| 163 | |**2024-10-08**|**A Multi-Layered Distributed Computing Framework for Enhanced Edge Computing**|Ke Ma et.al.|[2407.00565](http://arxiv.org/abs/2407.00565)|null| 164 | |**2024-06-24**|**Decentralized Task Offloading and Load-Balancing for Mobile Edge Computing in Dense Networks**|Mariam Yahya et.al.|[2407.00080](http://arxiv.org/abs/2407.00080)|null| 165 | |**2024-06-28**|**Koopman based trajectory model and computation offloading for high mobility paradigm in ISAC enabled IoT system**|Minh-Tuan Tran et.al.|[2406.19871](http://arxiv.org/abs/2406.19871)|null| 166 | |**2024-06-28**|**Prediction based computation offloading and resource allocation for multi-access ISAC enabled IoT system**|Duc-Thuan Le et.al.|[2406.19806](http://arxiv.org/abs/2406.19806)|null| 167 | |**2024-06-26**|**Resilient and Secure Programmable System-on-Chip Accelerator Offload**|Inês Pinto Gouveia et.al.|[2406.18117](http://arxiv.org/abs/2406.18117)|null| 168 | |**2024-06-17**|**QoE Maximization for Multiple-UAV-Assisted Multi-Access Edge Computing: An Online Joint Optimization Approach**|Long He et.al.|[2406.11918](http://arxiv.org/abs/2406.11918)|null| 169 | |**2024-06-17**|**Reconfigurable Intelligent Surface Assisted VEC Based on Multi-Agent Reinforcement Learning**|Kangwei Qi et.al.|[2406.11318](http://arxiv.org/abs/2406.11318)|**[link](https://github.com/qiongwu86/ris-vec-marl)**| 170 | |**2024-08-02**|**Fair Computation Offloading for RSMA-Assisted Mobile Edge Computing Networks**|Ding Xu et.al.|[2406.10895](http://arxiv.org/abs/2406.10895)|null| 171 | |**2024-06-11**|**Edge Rendering Architecture for multiuser XR Experiences and E2E Performance Assessment**|Inhar Yeregui et.al.|[2406.07087](http://arxiv.org/abs/2406.07087)|null| 172 | |**2024-06-11**|**DNN Partitioning, Task Offloading, and Resource Allocation in Dynamic Vehicular Networks: A Lyapunov-Guided Diffusion-Based Reinforcement Learning Approach**|Zhang Liu et.al.|[2406.06986](http://arxiv.org/abs/2406.06986)|null| 173 | |**2024-06-08**|**Diffusion-based Reinforcement Learning for Dynamic UAV-assisted Vehicle Twins Migration in Vehicular Metaverses**|Yongju Tong et.al.|[2406.05422](http://arxiv.org/abs/2406.05422)|null| 174 | |**2024-05-31**|**Quality-Aware Task Offloading for Cooperative Perception in Vehicular Edge Computing**|Amr M. Zaki et.al.|[2405.20587](http://arxiv.org/abs/2405.20587)|null| 175 | |**2024-05-29**|**FlocOff: Data Heterogeneity Resilient Federated Learning with Communication-Efficient Edge Offloading**|Mulei Ma et.al.|[2405.18739](http://arxiv.org/abs/2405.18739)|null| 176 | |**2024-06-26**|**An Multi-resources Integration Empowered Task Offloading in Internet of Vehicles: From the Perspective of Wireless Interference**|Xiaowu Liu et.al.|[2405.16078](http://arxiv.org/abs/2405.16078)|null| 177 | |**2024-05-25**|**Delay-Effective Task Offloading Technology in Internet of Vehicles: From the Perspective of the Vehicle Platooning**|Kan Yu et.al.|[2405.16060](http://arxiv.org/abs/2405.16060)|null| 178 | |**2024-05-18**|**Hierarchical Reinforcement Learning Empowered Task Offloading in V2I Networks**|Xinyu You et.al.|[2405.11352](http://arxiv.org/abs/2405.11352)|null| 179 | |**2024-05-10**|**EcoEdgeTwin: Enhanced 6G Network via Mobile Edge Computing and Digital Twin Integration**|Synthia Hossain Karobi et.al.|[2405.06507](http://arxiv.org/abs/2405.06507)|null| 180 | |**2024-05-10**|**Joint Uplink and Downlink Rate Splitting for Fog Computing-Enabled Internet of Medical Things**|Jiasi Zhou et.al.|[2405.06297](http://arxiv.org/abs/2405.06297)|null| 181 | |**2024-05-20**|**Collaborative Satellite Computing through Adaptive DNN Task Splitting and Offloading**|Shifeng Peng et.al.|[2405.03181](http://arxiv.org/abs/2405.03181)|null| 182 | |**2024-05-05**|**Multi-Agent RL-Based Industrial AIGC Service Offloading over Wireless Edge Networks**|Siyuan Li et.al.|[2405.02972](http://arxiv.org/abs/2405.02972)|null| 183 | |**2024-05-04**|**Deduplicator: When Computation Reuse Meets Load Balancing at the Network Edge**|Md Washik Al Azad et.al.|[2405.02682](http://arxiv.org/abs/2405.02682)|**[link](https://github.com/malazad/deduplicator)**| 184 | |**2024-04-29**|**Movable Antenna-Enhanced Wireless Powered Mobile Edge Computing Systems**|Pengcheng Chen et.al.|[2404.18406](http://arxiv.org/abs/2404.18406)|null| 185 | |**2024-04-19**|**Multi-Objective Offloading Optimization in MEC and Vehicular-Fog Systems: A Distributed-TD3 Approach**|Frezer Guteta Wakgra et.al.|[2404.12584](http://arxiv.org/abs/2404.12584)|null| 186 | |**2024-04-15**|**Servers Placement Scheme Based on All-pay Auction Framework in Mobile Edge Computing**|Yun Xia et.al.|[2404.09477](http://arxiv.org/abs/2404.09477)|null| 187 | |**2024-04-30**|**Egret: Reinforcement Mechanism for Sequential Computation Offloading in Edge Computing**|Haosong Peng et.al.|[2404.09285](http://arxiv.org/abs/2404.09285)|null| 188 | |**2024-04-12**|**Joint Computation Offloading and Target Tracking in Integrated Sensing and Communication Enabled UAV Networks**|Trinh Van Chien et.al.|[2404.08396](http://arxiv.org/abs/2404.08396)|null| 189 | 190 | [contributors-shield]: https://img.shields.io/github/contributors/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge 191 | [contributors-url]: https://github.com/JussiKalliola/offloading-arxiv-daily/graphs/contributors 192 | [forks-shield]: https://img.shields.io/github/forks/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge 193 | [forks-url]: https://github.com/JussiKalliola/offloading-arxiv-daily/network/members 194 | [stars-shield]: https://img.shields.io/github/stars/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge 195 | [stars-url]: https://github.com/JussiKalliola/offloading-arxiv-daily/stargazers 196 | [issues-shield]: https://img.shields.io/github/issues/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge 197 | [issues-url]: https://github.com/JussiKalliola/offloading-arxiv-daily/issues 198 | 199 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Contributors][contributors-shield]][contributors-url] 2 | [![Forks][forks-shield]][forks-url] 3 | [![Stargazers][stars-shield]][stars-url] 4 | [![Issues][issues-shield]][issues-url] 5 | 6 | ## Updated on 2025.11.05 7 | > Usage instructions: [here](./docs/README.md#usage) 8 | 9 |
10 | Table of Contents 11 |
    12 |
  1. Offloading
  2. 13 |
14 |
15 | 16 | ## Offloading 17 | 18 | |Publish Date|Title|Authors|PDF|Code| 19 | |---|---|---|---|---| 20 | |**2025-07-21**|**Vehicular Cloud Computing: A cost-effective alternative to Edge Computing in 5G networks**|Rosario Patanè et.al.|[2507.15670](http://arxiv.org/abs/2507.15670)|null| 21 | |**2025-07-17**|**QTCAJOSA: Low-Complexity Joint Offloading and Subchannel Allocation for NTN-Enabled IoMT**|Alejandro Flores C. et.al.|[2507.13242](http://arxiv.org/abs/2507.13242)|null| 22 | |**2025-07-17**|**Energy-Efficient RSMA-enabled Low-altitude MEC Optimization Via Generative AI-enhanced Deep Reinforcement Learning**|Xudong Wang et.al.|[2507.12910](http://arxiv.org/abs/2507.12910)|null| 23 | |**2025-07-16**|**MOFCO: Mobility- and Migration-Aware Task Offloading in Three-Layer Fog Computing Environments**|Soheil Mahdizadeh et.al.|[2507.12028](http://arxiv.org/abs/2507.12028)|null| 24 | |**2025-07-14**|**A Model Aware AIGC Task Offloading Algorithm in IIoT Edge Computing**|Xin Wang et.al.|[2507.11560](http://arxiv.org/abs/2507.11560)|null| 25 | |**2025-07-12**|**Reliable Task Offloading in MEC through Transmission Diversity and Jamming-Aware Scheduling**|Ghazal Asemian et.al.|[2507.09352](http://arxiv.org/abs/2507.09352)|null| 26 | |**2025-07-12**|**Fast and Adaptive Task Management in MEC: A Deep Learning Approach Using Pointer Networks**|Arild Yonkeu et.al.|[2507.09346](http://arxiv.org/abs/2507.09346)|null| 27 | |**2025-07-12**|**Meeting Deadlines in Motion: Deep RL for Real-Time Task Offloading in Vehicular Edge Networks**|Mahsa Paknejad et.al.|[2507.09341](http://arxiv.org/abs/2507.09341)|null| 28 | |**2025-07-08**|**Hierarchical Task Offloading for UAV-Assisted Vehicular Edge Computing via Deep Reinforcement Learning**|Hongbao Li et.al.|[2507.05722](http://arxiv.org/abs/2507.05722)|null| 29 | |**2025-07-01**|**Robust Task Offloading for UAV-enabled Secure MEC Against Aerial Eavesdropper**|Can Cui et.al.|[2507.00710](http://arxiv.org/abs/2507.00710)|null| 30 | |**2025-06-20**|**RL-based Adaptive Task Offloading in Mobile-Edge Computing for Future IoT Networks**|Ziad Qais Al Abbasi et.al.|[2506.22474](http://arxiv.org/abs/2506.22474)|null| 31 | |**2025-06-27**|**Joint Task Offloading and Resource Allocation in Low-Altitude MEC via Graph Attention Diffusion**|Yifan Xue et.al.|[2506.21933](http://arxiv.org/abs/2506.21933)|null| 32 | |**2025-06-18**|**Joint Computation Offloading and Resource Allocation for Uncertain Maritime MEC via Cooperation of UAVs and Vessels**|Jiahao You et.al.|[2506.15225](http://arxiv.org/abs/2506.15225)|null| 33 | |**2025-06-16**|**Delay-optimal Congestion-aware Routing and Computation Offloading in Arbitrary Network**|Jinkun Zhang et.al.|[2506.13626](http://arxiv.org/abs/2506.13626)|null| 34 | |**2025-06-13**|**OSI Stack Redesign for Quantum Networks: Requirements, Technologies, Challenges, and Future Directions**|Shakil Ahmed et.al.|[2506.12195](http://arxiv.org/abs/2506.12195)|null| 35 | |**2025-06-10**|**Optimal Task Offloading with Firm Deadlines for Mobile Edge Computing Systems**|Khai Doan et.al.|[2506.09180](http://arxiv.org/abs/2506.09180)|null| 36 | |**2025-06-18**|**Computation Capacity Maximization for Pinching Antennas-Assisted Wireless Powered MEC Systems**|Peng Liu et.al.|[2506.07598](http://arxiv.org/abs/2506.07598)|null| 37 | |**2025-06-04**|**Knowledge-Guided Attention-Inspired Learning for Task Offloading in Vehicle Edge Computing**|Ke Ma et.al.|[2506.04456](http://arxiv.org/abs/2506.04456)|null| 38 | |**2025-06-03**|**FAuNO: Semi-Asynchronous Federated Reinforcement Learning Framework for Task Offloading in Edge Systems**|Frederico Metelo et.al.|[2506.02668](http://arxiv.org/abs/2506.02668)|null| 39 | |**2025-06-03**|**A Novel Deep Reinforcement Learning Method for Computation Offloading in Multi-User Mobile Edge Computing with Decentralization**|Nguyen Chi Long et.al.|[2506.02458](http://arxiv.org/abs/2506.02458)|null| 40 | |**2025-06-02**|**Improving compiler support for SIMD offload using Arm Streaming SVE**|Mohamed Husain Noor Mohamed et.al.|[2506.02233](http://arxiv.org/abs/2506.02233)|null| 41 | |**2025-05-28**|**Real-World Modeling of Computation Offloading for Neural Networks with Early Exits and Splits**|Jan Danek et.al.|[2505.22149](http://arxiv.org/abs/2505.22149)|null| 42 | |**2025-05-19**|**Learning Driven Elastic Task Multi-Connectivity Immersive Computing Systems**|Babak Badnava et.al.|[2505.13331](http://arxiv.org/abs/2505.13331)|null| 43 | |**2025-05-16**|**Enhancing Secrecy Energy Efficiency in RIS-Aided Aerial Mobile Edge Computing Networks: A Deep Reinforcement Learning Approach**|Aly Sabri Abdalla et.al.|[2505.10815](http://arxiv.org/abs/2505.10815)|null| 44 | |**2025-05-10**|**Distributionally Robust Contract Theory for Edge AIGC Services in Teleoperation**|Zijun Zhan et.al.|[2505.06678](http://arxiv.org/abs/2505.06678)|**[link](https://github.com/zijun0819/dro-contract-theory)**| 45 | |**2025-05-07**|**Joint Task Offloading and Channel Allocation in Spatial-Temporal Dynamic for MEC Networks**|Tianyi Shi et.al.|[2505.04272](http://arxiv.org/abs/2505.04272)|null| 46 | |**2025-05-01**|**SeLR: Sparsity-enhanced Lagrangian Relaxation for Computation Offloading at the Edge**|Negar Erfaniantaghvayi et.al.|[2505.00848](http://arxiv.org/abs/2505.00848)|**[link](https://github.com/Negar-Erfanian/SeLR)**| 47 | |**2025-04-29**|**Intelligent Task Offloading in VANETs: A Hybrid AI-Driven Approach for Low-Latency and Energy Efficiency**|Tariq Qayyum et.al.|[2504.20735](http://arxiv.org/abs/2504.20735)|null| 48 | |**2025-04-25**|**Joint Resource Estimation and Trajectory Optimization for eVTOL-involved CR network: A Monte Carlo Tree Search-based Approach**|Kai Xiong et.al.|[2504.18031](http://arxiv.org/abs/2504.18031)|null| 49 | |**2025-04-24**|**Cooperative Task Offloading through Asynchronous Deep Reinforcement Learning in Mobile Edge Computing for Future Networks**|Yuelin Liu et.al.|[2504.17526](http://arxiv.org/abs/2504.17526)|null| 50 | |**2025-04-23**|**Preemption Aware Task Scheduling for Priority and Deadline Constrained DNN Inference Task Offloading in Homogeneous Mobile-Edge Networks**|Jamie Cotter et.al.|[2504.16792](http://arxiv.org/abs/2504.16792)|null| 51 | |**2025-04-23**|**MEC Task Offloading in AIoT: A User-Centric DRL Model Splitting Inference Scheme**|Weixi Li et.al.|[2504.16729](http://arxiv.org/abs/2504.16729)|null| 52 | |**2025-04-21**|**To Offload or Not To Offload: Model-driven Comparison of Edge-native and On-device Processing**|Nathan Ng et.al.|[2504.15162](http://arxiv.org/abs/2504.15162)|null| 53 | |**2025-04-18**|**Task Assignment and Exploration Optimization for Low Altitude UAV Rescue via Generative AI Enhanced Multi-agent Reinforcement Learning**|Xin Tang et.al.|[2504.13554](http://arxiv.org/abs/2504.13554)|null| 54 | |**2025-04-13**|**PLS-Assisted Offloading for Edge Computing-Enabled Post-Quantum Security in Resource-Constrained Devices**|Hamid Amiriara et.al.|[2504.09437](http://arxiv.org/abs/2504.09437)|null| 55 | |**2025-04-10**|**Hybrid Reinforcement Learning-based Sustainable Multi-User Computation Offloading for Mobile Edge-Quantum Computing**|Minrui Xu et.al.|[2504.08134](http://arxiv.org/abs/2504.08134)|null| 56 | |**2025-03-26**|**UAV-Assisted MEC for Disaster Response: Stackelberg Game-Based Resource Optimization**|Yafei Guo et.al.|[2504.07119](http://arxiv.org/abs/2504.07119)|null| 57 | |**2025-04-01**|**Efficient and Sustainable Task Offloading in UAV-Assisted MEC Systems via Meta Deep Reinforcement Learning**|Maryam Farajzadeh Dehkordi et.al.|[2504.00453](http://arxiv.org/abs/2504.00453)|null| 58 | |**2025-03-26**|**Sequential Task Assignment and Resource Allocation in V2X-Enabled Mobile Edge Computing**|Yufei Ye et.al.|[2503.20256](http://arxiv.org/abs/2503.20256)|null| 59 | |**2025-03-25**|**A Reliable and Efficient 5G Vehicular MEC: Guaranteed Task Completion with Minimal Latency**|Mahsa Paknejad et.al.|[2503.19320](http://arxiv.org/abs/2503.19320)|null| 60 | |**2025-03-25**|**Partitioned Task Offloading for Low-Latency and Reliable Task Completion in 5G MEC**|Parisa Fard Moshiri et.al.|[2503.19319](http://arxiv.org/abs/2503.19319)|null| 61 | |**2025-03-21**|**Rotatable RIS-Assisted Edge Computing: Orientation, Task Offloading, and Resource Optimization**|Bin Li et.al.|[2503.16879](http://arxiv.org/abs/2503.16879)|null| 62 | |**2025-03-11**|**Joint Semantic Transmission and Resource Allocation for Intelligent Computation Task Offloading in MEC Systems**|Yuanpeng Zheng et.al.|[2503.08001](http://arxiv.org/abs/2503.08001)|null| 63 | |**2025-03-06**|**Energy-Aware Task Offloading for Rotatable STAR-RIS-Enhanced Mobile Edge Computing Systems**|Dongdong Yang et.al.|[2503.04397](http://arxiv.org/abs/2503.04397)|null| 64 | |**2025-03-05**|**Multi-Agent DRL for Queue-Aware Task Offloading in Hierarchical MEC-Enabled Air-Ground Networks**|Muhammet Hevesli et.al.|[2503.03391](http://arxiv.org/abs/2503.03391)|null| 65 | |**2025-02-27**|**Orchestrating Joint Offloading and Scheduling for Low-Latency Edge SLAM**|Yao Zhang et.al.|[2502.16495](http://arxiv.org/abs/2502.16495)|null| 66 | |**2025-02-21**|**Computation Offloading Strategies in Integrated Terrestrial and Non-Terrestrial Networks**|Muhammad Ahmed Mohsin et.al.|[2502.15903](http://arxiv.org/abs/2502.15903)|null| 67 | |**2025-02-18**|**A Survey on DRL based UAV Communications and Networking: DRL Fundamentals, Applications and Implementations**|Wei Zhao et.al.|[2502.12875](http://arxiv.org/abs/2502.12875)|null| 68 | |**2025-02-14**|**IRS-assisted Edge Computing for Vehicular Networks: A Generative Diffusion Model-based Stackelberg Game Approach**|Yixian Wang et.al.|[2502.10149](http://arxiv.org/abs/2502.10149)|null| 69 | |**2025-02-12**|**Generative AI-Enhanced Cooperative MEC of UAVs and Ground Stations for Unmanned Surface Vehicles**|Jiahao You et.al.|[2502.08119](http://arxiv.org/abs/2502.08119)|null| 70 | |**2025-02-10**|**Task Offloading in Vehicular Edge Computing using Deep Reinforcement Learning: A Survey**|Ashab Uddin et.al.|[2502.06963](http://arxiv.org/abs/2502.06963)|null| 71 | |**2025-02-27**|**A Survey on Video Analytics in Cloud-Edge-Terminal Collaborative Systems**|Linxiao Gong et.al.|[2502.06581](http://arxiv.org/abs/2502.06581)|null| 72 | |**2025-02-07**|**Uplink Rate-Splitting Multiple Access for Mobile Edge Computing with Short-Packet Communications**|Jiawei Xu et.al.|[2502.04827](http://arxiv.org/abs/2502.04827)|null| 73 | |**2025-02-05**|**Lightweight Authenticated Task Offloading in 6G-Cloud Vehicular Twin Networks**|Sarah Al-Shareeda et.al.|[2502.03403](http://arxiv.org/abs/2502.03403)|null| 74 | |**2025-02-06**|**Advancements in Mobile Edge Computing and Open RAN: Leveraging Artificial Intelligence and Machine Learning for Wireless Systems**|Ryan Barker et.al.|[2502.02886](http://arxiv.org/abs/2502.02886)|null| 75 | |**2025-01-30**|**Distributed Offloading in Multi-Access Edge Computing Systems: A Mean-Field Perspective**|Shubham Aggarwal et.al.|[2501.18718](http://arxiv.org/abs/2501.18718)|null| 76 | |**2025-01-28**|**Network Slice-based Low-Altitude Intelligent Network for Advanced Air Mobility**|Kai Xiong et.al.|[2501.17014](http://arxiv.org/abs/2501.17014)|null| 77 | |**2025-01-26**|**Vehicular Multi-Tier Distributed Computing with Hybrid THz-RF Transmission in Satellite-Terrestrial Integrated Networks**|Ni Zhang et.al.|[2501.15577](http://arxiv.org/abs/2501.15577)|null| 78 | |**2025-01-25**|**Enhancing Disaster Resilience with UAV-Assisted Edge Computing: A Reinforcement Learning Approach to Managing Heterogeneous Edge Devices**|Talha Azfar et.al.|[2501.15305](http://arxiv.org/abs/2501.15305)|null| 79 | |**2025-01-25**|**Reinforcement Learning Controlled Adaptive PSO for Task Offloading in IIoT Edge Computing**|Minod Perera et.al.|[2501.15203](http://arxiv.org/abs/2501.15203)|**[link](https://github.com/MinodRashmika/APSO_SAC_IIOT)**| 80 | |**2025-01-31**|**UAV-Assisted MEC Architecture for Collaborative Task Offloading in Urban IoT Environment**|Subhrajit Barick et.al.|[2501.15164](http://arxiv.org/abs/2501.15164)|null| 81 | |**2025-01-24**|**Serving Long-Context LLMs at the Mobile Edge: Test-Time Reinforcement Learning-based Model Caching and Inference Offloading**|Minrui Xu et.al.|[2501.14205](http://arxiv.org/abs/2501.14205)|null| 82 | |**2025-01-22**|**Joint Task Offloading and User Scheduling in 5G MEC under Jamming Attacks**|Mohammadreza Amini et.al.|[2501.13227](http://arxiv.org/abs/2501.13227)|null| 83 | |**2025-01-20**|**Secure Resource Allocation via Constrained Deep Reinforcement Learning**|Jianfei Sun et.al.|[2501.11557](http://arxiv.org/abs/2501.11557)|null| 84 | |**2025-01-20**|**A Dynamic Improvement Framework for Vehicular Task Offloading**|Qianren Li et.al.|[2501.11333](http://arxiv.org/abs/2501.11333)|null| 85 | |**2025-01-02**|**Multi-task Domain Adaptation for Computation Offloading in Edge-intelligence Networks**|Runxin Han et.al.|[2501.07585](http://arxiv.org/abs/2501.07585)|null| 86 | |**2025-01-11**|**Task Delay and Energy Consumption Minimization for Low-altitude MEC via Evolutionary Multi-objective Deep Reinforcement Learning**|Geng Sun et.al.|[2501.06410](http://arxiv.org/abs/2501.06410)|null| 87 | |**2025-01-08**|**Intelligent Task Offloading: Advanced MEC Task Offloading and Resource Management in 5G Networks**|Alireza Ebrahimi et.al.|[2501.06242](http://arxiv.org/abs/2501.06242)|null| 88 | |**2024-12-24**|**Energy Efficient Computation Offloading and Virtual Connection Control in Uplink Small Cell Networks**|Davoud Yousefi et.al.|[2501.06194](http://arxiv.org/abs/2501.06194)|null| 89 | |**2025-01-10**|**Fully Decentralized Computation Offloading in Priority-Driven Edge Computing Systems**|Shubham Aggarwal et.al.|[2501.05660](http://arxiv.org/abs/2501.05660)|null| 90 | |**2025-01-05**|**Towards Beyond Communications 6G Networks Status and Challenges**|Vasileios Tsekenis et.al.|[2501.04496](http://arxiv.org/abs/2501.04496)|null| 91 | |**2025-01-08**|**A 5G-Edge Architecture for Computational Offloading of Computer Vision Applications**|Marcelo V. B. da Silva et.al.|[2501.04267](http://arxiv.org/abs/2501.04267)|null| 92 | |**2025-01-06**|**Online Collaborative Resource Allocation and Task Offloading for Multi-access Edge Computing**|Geng Sun et.al.|[2501.02952](http://arxiv.org/abs/2501.02952)|null| 93 | |**2025-01-06**|**An Infrastructure Software Perspective Toward Computation Offloading between Executable Specifications and Foundation Models**|Dezhi Ran et.al.|[2501.02829](http://arxiv.org/abs/2501.02829)|null| 94 | |**2025-01-01**|**Communication Efficient Cooperative Edge AI via Event-Triggered Computation Offloading**|You Zhou et.al.|[2501.02001](http://arxiv.org/abs/2501.02001)|null| 95 | |**2024-12-30**|**Retrieval-Augmented Generation for Mobile Edge Computing via Large Language Model**|Runtao Ren et.al.|[2412.20820](http://arxiv.org/abs/2412.20820)|null| 96 | |**2025-01-05**|**Joint Task Offloading and Routing in Wireless Multi-hop Networks Using Biased Backpressure Algorithm**|Zhongyuan Zhao et.al.|[2412.15385](http://arxiv.org/abs/2412.15385)|null| 97 | |**2024-12-18**|**Robust UAV Jittering and Task Scheduling in Mobile Edge Computing with Data Compression**|Bin Li et.al.|[2412.13676](http://arxiv.org/abs/2412.13676)|null| 98 | |**2024-12-17**|**A Measurement-Based Spatially Consistent Channel Model for Distributed MIMO in Industrial Environments**|Christian Nelson et.al.|[2412.12646](http://arxiv.org/abs/2412.12646)|null| 99 | |**2024-11-16**|**Distributed Collaborative Inference System in Next-Generation Networks and Communication**|Chuan Zhang et.al.|[2412.12102](http://arxiv.org/abs/2412.12102)|null| 100 | |**2024-12-16**|**Latency Minimization for Movable Antennas-Enabled Relay-aided D2D Mobile Edge Computing Communication Systems**|Yue Xiu et.al.|[2412.11351](http://arxiv.org/abs/2412.11351)|null| 101 | |**2024-12-14**|**Cluster-Based Multi-Agent Task Scheduling for Space-Air-Ground Integrated Networks**|Zhiying Wang et.al.|[2412.10700](http://arxiv.org/abs/2412.10700)|null| 102 | |**2024-12-15**|**GDSG: Graph Diffusion-based Solution Generator for Optimization Problems in MEC Networks**|Ruihuai Liang et.al.|[2412.08296](http://arxiv.org/abs/2412.08296)|**[link](https://github.com/qiyu3816/gdsg)**| 103 | |**2024-12-11**|**Collaborative Inference for Large Models with Task Offloading and Early Exiting**|Zuan Xie et.al.|[2412.08284](http://arxiv.org/abs/2412.08284)|null| 104 | |**2024-12-09**|**BECS: A Privacy-Preserving Computing Sharing Mechanism in 6G Computing Power Network**|Kun Yan et.al.|[2412.06196](http://arxiv.org/abs/2412.06196)|null| 105 | |**2024-12-06**|**Distributed Massive MIMO-Aided Task Offloading in Satellite-Terrestrial Integrated Multi-Tier VEC Networks**|Yixin Liu et.al.|[2412.04793](http://arxiv.org/abs/2412.04793)|null| 106 | |**2024-11-28**|**Traffic-cognitive Slicing for Resource-efficient Offloading with Dual-distillation DRL in Multi-edge Systems**|Ting Xiaoyang et.al.|[2412.04192](http://arxiv.org/abs/2412.04192)|null| 107 | |**2024-12-11**|**Hierarchical Learning for IRS-Assisted MEC Systems with Rate-Splitting Multiple Access**|Yinyu Wu et.al.|[2412.04002](http://arxiv.org/abs/2412.04002)|null| 108 | |**2024-12-05**|**Offloading Revenue Maximization in Multi-UAV-Assisted Mobile Edge Computing for Video Stream**|Bin Li et.al.|[2412.03965](http://arxiv.org/abs/2412.03965)|null| 109 | |**2024-11-30**|**Incentive-Driven Task Offloading and Collaborative Computing in Device-Assisted MEC Networks**|Yang Li et.al.|[2412.00370](http://arxiv.org/abs/2412.00370)|**[link](https://github.com/CPNGroup/Multi_Level_EC)**| 110 | |**2024-11-26**|**Joint Resource Optimization, Computation Offloading and Resource Slicing for Multi-Edge Traffic-Cognitive Networks**|Ting Xiaoyang et.al.|[2411.17782](http://arxiv.org/abs/2411.17782)|null| 111 | |**2024-11-24**|**Algorithmics and Complexity of Cost-Driven Task Offloading with Submodular Optimization in Edge-Cloud Environments**|Longkun Guo et.al.|[2411.15687](http://arxiv.org/abs/2411.15687)|null| 112 | |**2024-11-07**|**Real-Time Aware IP-Networking for Resource-Constrained Embedded Devices**|Ilja Behnke et.al.|[2411.15150](http://arxiv.org/abs/2411.15150)|null| 113 | |**2024-11-16**|**Task Offloading for Vehicular Edge Computing Based on Improved Hotstuff under Parking Assistance**|Guoling Liang et.al.|[2411.10770](http://arxiv.org/abs/2411.10770)|null| 114 | |**2024-11-15**|**A Combined Environmental Monitoring Framework based on WSN Clustering and VANET Edge Computation Offloading**|Basilis Mamalis et.al.|[2411.10560](http://arxiv.org/abs/2411.10560)|null| 115 | |**2024-11-12**|**Space-Air-Ground Integrated MEC-Assisted Industrial Cyber-Physical Systems: An Online Decentralized Optimization Approach**|Long He et.al.|[2411.09712](http://arxiv.org/abs/2411.09712)|null| 116 | |**2024-11-12**|**Decentralized Network Topology Design for Task Offloading in Mobile Edge Computing**|Ke Ma et.al.|[2411.07485](http://arxiv.org/abs/2411.07485)|null| 117 | |**2024-12-02**|**JC5A: Service Delay Minimization for Aerial MEC-assisted Industrial Cyber-Physical Systems**|Geng Sun et.al.|[2411.04762](http://arxiv.org/abs/2411.04762)|null| 118 | |**2024-10-30**|**Profiling AI Models: Towards Efficient Computation Offloading in Heterogeneous Edge AI Systems**|Juan Marcelo Parra-Ullauri et.al.|[2411.00859](http://arxiv.org/abs/2411.00859)|null| 119 | |**2024-12-13**|**Distributed Computation Offloading for Energy Provision Minimization in WP-MEC Networks with Multiple HAPs**|Xiaoying Liu et.al.|[2411.00397](http://arxiv.org/abs/2411.00397)|null| 120 | |**2024-10-21**|**Secure Collaborative Computation Offloading and Resource Allocation in Cache-Assisted Ultra-Dense IoT Networks With Multi-Slope Channels**|Tianqing Zhou et.al.|[2410.14142](http://arxiv.org/abs/2410.14142)|null| 121 | |**2024-10-16**|**Joint Data Compression, Secure Multi-Part Collaborative Task Offloading and Resource Assignment in Ultra-Dense Networks**|Tianqing Zhou et.al.|[2410.12186](http://arxiv.org/abs/2410.12186)|null| 122 | |**2024-10-14**|**Content Caching-Assisted Vehicular Edge Computing Using Multi-Agent Graph Attention Reinforcement Learning**|Jinjin Shen et.al.|[2410.10071](http://arxiv.org/abs/2410.10071)|null| 123 | |**2024-10-09**|**VEC-Sim: A Simulation Platform for Evaluating Service Caching and Computation Offloading Policies in Vehicular Edge Networks**|Fan Wu et.al.|[2410.06934](http://arxiv.org/abs/2410.06934)|null| 124 | |**2024-10-09**|**Variations in Multi-Agent Actor-Critic Frameworks for Joint Optimizations in UAV Swarm Networks: Recent Evolution, Challenges, and Directions**|Muhammad Morshed Alam et.al.|[2410.06627](http://arxiv.org/abs/2410.06627)|null| 125 | |**2024-10-08**|**Deep Reinforcement Learning for Delay-Optimized Task Offloading in Vehicular Fog Computing**|Mohammad Parsa Toopchinezhad et.al.|[2410.03472](http://arxiv.org/abs/2410.03472)|**[link](https://github.com/Procedurally-Generated-Human/VFC-Offloading-RL)**| 126 | |**2024-09-30**|**Edge Intelligence in Satellite-Terrestrial Networks with Hybrid Quantum Computing**|Siyue Huang et.al.|[2409.19869](http://arxiv.org/abs/2409.19869)|null| 127 | |**2024-09-13**|**Dynamic Pricing based Near-Optimal Resource Allocation for Elastic Edge Offloading**|Yun Xia et.al.|[2409.18977](http://arxiv.org/abs/2409.18977)|null| 128 | |**2024-09-27**|**Online and Utility-Power Efficient Task Scheduling in Homogeneous Fog Networks**|Fatemeh Ebadi et.al.|[2409.18675](http://arxiv.org/abs/2409.18675)|null| 129 | |**2024-09-26**|**Multi-UAV Enabled MEC Networks: Optimizing Delay through Intelligent 3D Trajectory Planning and Resource Allocation**|Zhiying Wang et.al.|[2409.17882](http://arxiv.org/abs/2409.17882)|null| 130 | |**2024-09-26**|**Computation Pre-Offloading for MEC-Enabled Vehicular Networks via Trajectory Prediction**|Ting Zhang et.al.|[2409.17681](http://arxiv.org/abs/2409.17681)|null| 131 | |**2024-09-26**|**SLO-Aware Task Offloading within Collaborative Vehicle Platoons**|Boris Sedlak et.al.|[2409.17667](http://arxiv.org/abs/2409.17667)|null| 132 | |**2024-09-25**|**A QoE-Aware Split Inference Accelerating Algorithm for NOMA-based Edge Intelligence**|Xin Yuan et.al.|[2409.16537](http://arxiv.org/abs/2409.16537)|null| 133 | |**2024-09-24**|**Mean Age of Information in Partial Offloading Mobile Edge Computing Networks**|Ying Dong et.al.|[2409.16115](http://arxiv.org/abs/2409.16115)|null| 134 | |**2024-09-23**|**Energy-Efficient Multi-UAV-Enabled MEC Systems with Space-Air-Ground Integrated Networks**|Wenchao Liu et.al.|[2409.14782](http://arxiv.org/abs/2409.14782)|null| 135 | |**2024-09-17**|**Dynamic DAG-Application Scheduling for Multi-Tier Edge Computing in Heterogeneous Networks**|Xiang Li et.al.|[2409.10839](http://arxiv.org/abs/2409.10839)|null| 136 | |**2024-09-12**|**Tera-SpaceCom: GNN-based Deep Reinforcement Learning for Joint Resource Allocation and Task Offloading in TeraHertz Band Space Networks**|Zhifeng Hu et.al.|[2409.07911](http://arxiv.org/abs/2409.07911)|null| 137 | |**2024-11-26**|**PEERNet: An End-to-End Profiling Tool for Real-Time Networked Robotic Systems**|Aditya Narayanan et.al.|[2409.06078](http://arxiv.org/abs/2409.06078)|**[link](https://github.com/utaustin-swarmlab/peernet)**| 138 | |**2024-09-04**|**A Joint Time and Energy-Efficient Federated Learning-based Computation Offloading Method for Mobile Edge Computing**|Anwesha Mukherjee et.al.|[2409.02548](http://arxiv.org/abs/2409.02548)|null| 139 | |**2024-09-04**|**AirFogSim: A Light-Weight and Modular Simulator for UAV-Integrated Vehicular Fog Computing**|Zhiwei Wei et.al.|[2409.02518](http://arxiv.org/abs/2409.02518)|**[link](https://github.com/zhiweiwei-nami/airfogsim)**| 140 | |**2024-08-28**|**Joint Offloading and Beamforming Design in Integrating Sensing, Communication, and Computing Systems: A Distributed Approach**|Peng Liu et.al.|[2408.15481](http://arxiv.org/abs/2408.15481)|null| 141 | |**2024-08-27**|**DRL-Based Federated Self-Supervised Learning for Task Offloading and Resource Allocation in ISAC-Enabled Vehicle Edge Computing**|Xueying Gu et.al.|[2408.14831](http://arxiv.org/abs/2408.14831)|**[link](https://github.com/qiongwu86/federated-ssl-task-offloading-and-resource-allocation)**| 142 | |**2024-08-24**|**Mobile Edge Computing Networks: Online Low-Latency and Fresh Service Provisioning**|Yuhan Yi et.al.|[2408.13605](http://arxiv.org/abs/2408.13605)|null| 143 | |**2024-08-24**|**Unleashing Collaborative Computing for Adaptive Video Streaming with Multi-objective Optimization in Satellite Terrestrial Networks**|Zhishu Shen et.al.|[2408.13512](http://arxiv.org/abs/2408.13512)|null| 144 | |**2024-08-23**|**Active STAR-RIS Empowered Edge System for Enhanced Energy Efficiency and Task Management**|Pyae Sone Aung et.al.|[2408.12860](http://arxiv.org/abs/2408.12860)|null| 145 | |**2024-08-11**|**DeepAir: A Multi-Agent Deep Reinforcement Learning Based Scheme for an Unknown User Location Problem**|Baris Yamansavascilar et.al.|[2408.05712](http://arxiv.org/abs/2408.05712)|null| 146 | |**2024-12-19**|**Generative AI as a Service in 6G Edge-Cloud: Generation Task Offloading by In-context Learning**|Hao Zhou et.al.|[2408.02549](http://arxiv.org/abs/2408.02549)|null| 147 | |**2024-08-04**|**Distributionally Robust Optimization for Computation Offloading in Aerial Access Networks**|Guanwang Jiang et.al.|[2408.02037](http://arxiv.org/abs/2408.02037)|null| 148 | |**2024-08-02**|**Deep progressive reinforcement learning-based flexible resource scheduling framework for IRS and UAV-assisted MEC system**|Li Dong et.al.|[2408.01248](http://arxiv.org/abs/2408.01248)|null| 149 | |**2024-07-31**|**Priority and Stackelberg Game-Based Incentive Task Allocation for Device-Assisted MEC Networks**|Yang Li et.al.|[2407.21352](http://arxiv.org/abs/2407.21352)|null| 150 | |**2024-07-29**|**Sustainable Task Offloading in Secure UAV-assisted Smart Farm Networks: A Multi-Agent DRL with Action Mask Approach**|Tingnan Bao et.al.|[2407.19657](http://arxiv.org/abs/2407.19657)|null| 151 | |**2024-07-26**|**Task Offloading in Fog Computing with Deep Reinforcement Learning: Future Research Directions Based on Security and Efficiency Enhancements**|Amir Pakmehr et.al.|[2407.19121](http://arxiv.org/abs/2407.19121)|null| 152 | |**2024-07-20**|**QoS Aware Mixed-Criticality Task Scheduling in Vehicular Edge Cloud System**|Suvarthi Sarkar et.al.|[2407.14793](http://arxiv.org/abs/2407.14793)|null| 153 | |**2024-06-24**|**Digital Twinning of a Pressurized Water Reactor Startup Operation and Partial Computational Offloading in In-network Computing-Assisted Multiaccess Edge Computing**|Ibrahim Aliyu et.al.|[2407.12011](http://arxiv.org/abs/2407.12011)|null| 154 | |**2024-07-16**|**Finite State Machines-Based Path-Following Collaborative Computing Strategy for Emergency UAV Swarms**|Jialin Hu et.al.|[2407.11531](http://arxiv.org/abs/2407.11531)|null| 155 | |**2024-07-16**|**Digital Twin Vehicular Edge Computing Network: Task Offloading and Resource Allocation**|Yu Xie et.al.|[2407.11310](http://arxiv.org/abs/2407.11310)|**[link](https://github.com/qiongwu86/digital-twin-vehicular-edge-computing-network_task-offloading-and-resource-allocation)**| 156 | |**2025-01-02**|**Joint Optimization of Completion Ratio and Latency of Offloaded Tasks with Multiple Priority Levels in 5G Edge**|Parisa Fard Moshiri et.al.|[2407.11155](http://arxiv.org/abs/2407.11155)|null| 157 | |**2024-06-28**|**Online Multi-Task Offloading for Semantic-Aware Edge Computing Systems**|Xuyang Chen et.al.|[2407.11018](http://arxiv.org/abs/2407.11018)|null| 158 | |**2024-08-02**|**Globally-Constrained Decentralized Optimization with Variable Coupling**|Dandan Wang et.al.|[2407.10770](http://arxiv.org/abs/2407.10770)|null| 159 | |**2024-07-08**|**Cost-Efficient Computation Offloading in SAGIN: A Deep Reinforcement Learning and Perception-Aided Approach**|Yulan Gao et.al.|[2407.05571](http://arxiv.org/abs/2407.05571)|null| 160 | |**2024-07-04**|**Multi-Time Scale Service Caching and Pricing in MEC Systems with Dynamic Program Popularity**|Yiming Chen et.al.|[2407.03804](http://arxiv.org/abs/2407.03804)|null| 161 | |**2024-07-03**|**Cooperative Multi-Agent Deep Reinforcement Learning Methods for UAV-aided Mobile Edge Computing Networks**|Mintae Kim et.al.|[2407.03280](http://arxiv.org/abs/2407.03280)|null| 162 | |**2024-07-01**|**Optimizing Age of Information in Vehicular Edge Computing with Federated Graph Neural Network Multi-Agent Reinforcement Learning**|Wenhua Wang et.al.|[2407.02342](http://arxiv.org/abs/2407.02342)|**[link](https://github.com/qiongwu86/optimizing-aoi-in-vec-with-federated-graph-neural-network-multi-agent-reinforcement-learning)**| 163 | |**2024-04-08**|**Towards a Partial Computation offloading in In-networking Computing-Assisted MEC: A Digital Twin Approach**|Ibrahim Aliyu et.al.|[2407.01540](http://arxiv.org/abs/2407.01540)|null| 164 | |**2024-07-01**|**Terahertz Communication Multi-UAV-Assisted Mobile Edge Computing System**|Heekang Song et.al.|[2407.01086](http://arxiv.org/abs/2407.01086)|null| 165 | |**2024-07-01**|**Reconfigurable Intelligent Computational Surfaces for MEC-Assisted Autonomous Driving Networks: Design Optimization and Analysis**|Xueyao Zhang et.al.|[2407.00933](http://arxiv.org/abs/2407.00933)|null| 166 | |**2024-10-08**|**A Multi-Layered Distributed Computing Framework for Enhanced Edge Computing**|Ke Ma et.al.|[2407.00565](http://arxiv.org/abs/2407.00565)|null| 167 | |**2024-06-24**|**Decentralized Task Offloading and Load-Balancing for Mobile Edge Computing in Dense Networks**|Mariam Yahya et.al.|[2407.00080](http://arxiv.org/abs/2407.00080)|null| 168 | |**2024-06-28**|**Koopman based trajectory model and computation offloading for high mobility paradigm in ISAC enabled IoT system**|Minh-Tuan Tran et.al.|[2406.19871](http://arxiv.org/abs/2406.19871)|null| 169 | |**2024-06-28**|**Prediction based computation offloading and resource allocation for multi-access ISAC enabled IoT system**|Duc-Thuan Le et.al.|[2406.19806](http://arxiv.org/abs/2406.19806)|null| 170 | |**2024-06-26**|**Resilient and Secure Programmable System-on-Chip Accelerator Offload**|Inês Pinto Gouveia et.al.|[2406.18117](http://arxiv.org/abs/2406.18117)|null| 171 | |**2024-06-17**|**QoE Maximization for Multiple-UAV-Assisted Multi-Access Edge Computing: An Online Joint Optimization Approach**|Long He et.al.|[2406.11918](http://arxiv.org/abs/2406.11918)|null| 172 | |**2024-06-17**|**Reconfigurable Intelligent Surface Assisted VEC Based on Multi-Agent Reinforcement Learning**|Kangwei Qi et.al.|[2406.11318](http://arxiv.org/abs/2406.11318)|**[link](https://github.com/qiongwu86/ris-vec-marl)**| 173 | |**2024-08-02**|**Fair Computation Offloading for RSMA-Assisted Mobile Edge Computing Networks**|Ding Xu et.al.|[2406.10895](http://arxiv.org/abs/2406.10895)|null| 174 | |**2024-06-11**|**Edge Rendering Architecture for multiuser XR Experiences and E2E Performance Assessment**|Inhar Yeregui et.al.|[2406.07087](http://arxiv.org/abs/2406.07087)|null| 175 | |**2024-06-11**|**DNN Partitioning, Task Offloading, and Resource Allocation in Dynamic Vehicular Networks: A Lyapunov-Guided Diffusion-Based Reinforcement Learning Approach**|Zhang Liu et.al.|[2406.06986](http://arxiv.org/abs/2406.06986)|null| 176 | |**2024-06-08**|**Diffusion-based Reinforcement Learning for Dynamic UAV-assisted Vehicle Twins Migration in Vehicular Metaverses**|Yongju Tong et.al.|[2406.05422](http://arxiv.org/abs/2406.05422)|null| 177 | |**2024-05-31**|**Quality-Aware Task Offloading for Cooperative Perception in Vehicular Edge Computing**|Amr M. Zaki et.al.|[2405.20587](http://arxiv.org/abs/2405.20587)|null| 178 | |**2024-05-29**|**FlocOff: Data Heterogeneity Resilient Federated Learning with Communication-Efficient Edge Offloading**|Mulei Ma et.al.|[2405.18739](http://arxiv.org/abs/2405.18739)|null| 179 | |**2024-06-26**|**An Multi-resources Integration Empowered Task Offloading in Internet of Vehicles: From the Perspective of Wireless Interference**|Xiaowu Liu et.al.|[2405.16078](http://arxiv.org/abs/2405.16078)|null| 180 | |**2024-05-25**|**Delay-Effective Task Offloading Technology in Internet of Vehicles: From the Perspective of the Vehicle Platooning**|Kan Yu et.al.|[2405.16060](http://arxiv.org/abs/2405.16060)|null| 181 | |**2024-05-18**|**Hierarchical Reinforcement Learning Empowered Task Offloading in V2I Networks**|Xinyu You et.al.|[2405.11352](http://arxiv.org/abs/2405.11352)|null| 182 | |**2024-05-10**|**EcoEdgeTwin: Enhanced 6G Network via Mobile Edge Computing and Digital Twin Integration**|Synthia Hossain Karobi et.al.|[2405.06507](http://arxiv.org/abs/2405.06507)|null| 183 | |**2024-05-10**|**Joint Uplink and Downlink Rate Splitting for Fog Computing-Enabled Internet of Medical Things**|Jiasi Zhou et.al.|[2405.06297](http://arxiv.org/abs/2405.06297)|null| 184 | |**2024-05-20**|**Collaborative Satellite Computing through Adaptive DNN Task Splitting and Offloading**|Shifeng Peng et.al.|[2405.03181](http://arxiv.org/abs/2405.03181)|null| 185 | |**2024-05-05**|**Multi-Agent RL-Based Industrial AIGC Service Offloading over Wireless Edge Networks**|Siyuan Li et.al.|[2405.02972](http://arxiv.org/abs/2405.02972)|null| 186 | |**2024-05-04**|**Deduplicator: When Computation Reuse Meets Load Balancing at the Network Edge**|Md Washik Al Azad et.al.|[2405.02682](http://arxiv.org/abs/2405.02682)|**[link](https://github.com/malazad/deduplicator)**| 187 | |**2024-04-29**|**Movable Antenna-Enhanced Wireless Powered Mobile Edge Computing Systems**|Pengcheng Chen et.al.|[2404.18406](http://arxiv.org/abs/2404.18406)|null| 188 | |**2024-04-19**|**Multi-Objective Offloading Optimization in MEC and Vehicular-Fog Systems: A Distributed-TD3 Approach**|Frezer Guteta Wakgra et.al.|[2404.12584](http://arxiv.org/abs/2404.12584)|null| 189 | |**2024-04-15**|**Servers Placement Scheme Based on All-pay Auction Framework in Mobile Edge Computing**|Yun Xia et.al.|[2404.09477](http://arxiv.org/abs/2404.09477)|null| 190 | |**2024-04-30**|**Egret: Reinforcement Mechanism for Sequential Computation Offloading in Edge Computing**|Haosong Peng et.al.|[2404.09285](http://arxiv.org/abs/2404.09285)|null| 191 | |**2024-04-12**|**Joint Computation Offloading and Target Tracking in Integrated Sensing and Communication Enabled UAV Networks**|Trinh Van Chien et.al.|[2404.08396](http://arxiv.org/abs/2404.08396)|null| 192 | 193 |

(back to top)

194 | 195 | [contributors-shield]: https://img.shields.io/github/contributors/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge 196 | [contributors-url]: https://github.com/JussiKalliola/offloading-arxiv-daily/graphs/contributors 197 | [forks-shield]: https://img.shields.io/github/forks/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge 198 | [forks-url]: https://github.com/JussiKalliola/offloading-arxiv-daily/network/members 199 | [stars-shield]: https://img.shields.io/github/stars/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge 200 | [stars-url]: https://github.com/JussiKalliola/offloading-arxiv-daily/stargazers 201 | [issues-shield]: https://img.shields.io/github/issues/JussiKalliola/offloading-arxiv-daily.svg?style=for-the-badge 202 | [issues-url]: https://github.com/JussiKalliola/offloading-arxiv-daily/issues 203 | 204 | -------------------------------------------------------------------------------- /docs/offloading-arxiv-daily.json: -------------------------------------------------------------------------------- 1 | {"Offloading": {"2501.02952": "|**2025-01-06**|**Online Collaborative Resource Allocation and Task Offloading for Multi-access Edge Computing**|Geng Sun et.al.|[2501.02952](http://arxiv.org/abs/2501.02952)|null|\n", "2501.02829": "|**2025-01-06**|**An Infrastructure Software Perspective Toward Computation Offloading between Executable Specifications and Foundation Models**|Dezhi Ran et.al.|[2501.02829](http://arxiv.org/abs/2501.02829)|null|\n", "2501.02001": "|**2025-01-01**|**Communication Efficient Cooperative Edge AI via Event-Triggered Computation Offloading**|You Zhou et.al.|[2501.02001](http://arxiv.org/abs/2501.02001)|null|\n", "2412.20820": "|**2024-12-30**|**Retrieval-Augmented Generation for Mobile Edge Computing via Large Language Model**|Runtao Ren et.al.|[2412.20820](http://arxiv.org/abs/2412.20820)|null|\n", "2412.15385": "|**2025-01-05**|**Joint Task Offloading and Routing in Wireless Multi-hop Networks Using Biased Backpressure Algorithm**|Zhongyuan Zhao et.al.|[2412.15385](http://arxiv.org/abs/2412.15385)|null|\n", "2412.13676": "|**2024-12-18**|**Robust UAV Jittering and Task Scheduling in Mobile Edge Computing with Data Compression**|Bin Li et.al.|[2412.13676](http://arxiv.org/abs/2412.13676)|null|\n", "2412.12646": "|**2024-12-17**|**A Measurement-Based Spatially Consistent Channel Model for Distributed MIMO in Industrial Environments**|Christian Nelson et.al.|[2412.12646](http://arxiv.org/abs/2412.12646)|null|\n", "2412.11351": "|**2024-12-16**|**Latency Minimization for Movable Antennas-Enabled Relay-aided D2D Mobile Edge Computing Communication Systems**|Yue Xiu et.al.|[2412.11351](http://arxiv.org/abs/2412.11351)|null|\n", "2412.10700": "|**2024-12-14**|**Cluster-Based Multi-Agent Task Scheduling for Space-Air-Ground Integrated Networks**|Zhiying Wang et.al.|[2412.10700](http://arxiv.org/abs/2412.10700)|null|\n", "2412.08296": "|**2024-12-15**|**GDSG: Graph Diffusion-based Solution Generator for Optimization Problems in MEC Networks**|Ruihuai Liang et.al.|[2412.08296](http://arxiv.org/abs/2412.08296)|**[link](https://github.com/qiyu3816/gdsg)**|\n", "2412.08284": "|**2024-12-11**|**Collaborative Inference for Large Models with Task Offloading and Early Exiting**|Zuan Xie et.al.|[2412.08284](http://arxiv.org/abs/2412.08284)|null|\n", "2412.06196": "|**2024-12-09**|**BECS: A Privacy-Preserving Computing Sharing Mechanism in 6G Computing Power Network**|Kun Yan et.al.|[2412.06196](http://arxiv.org/abs/2412.06196)|null|\n", "2412.04793": "|**2024-12-06**|**Distributed Massive MIMO-Aided Task Offloading in Satellite-Terrestrial Integrated Multi-Tier VEC Networks**|Yixin Liu et.al.|[2412.04793](http://arxiv.org/abs/2412.04793)|null|\n", "2412.04002": "|**2024-12-11**|**Hierarchical Learning for IRS-Assisted MEC Systems with Rate-Splitting Multiple Access**|Yinyu Wu et.al.|[2412.04002](http://arxiv.org/abs/2412.04002)|null|\n", "2412.03965": "|**2024-12-05**|**Offloading Revenue Maximization in Multi-UAV-Assisted Mobile Edge Computing for Video Stream**|Bin Li et.al.|[2412.03965](http://arxiv.org/abs/2412.03965)|null|\n", "2412.00370": "|**2024-11-30**|**Incentive-Driven Task Offloading and Collaborative Computing in Device-Assisted MEC Networks**|Yang Li et.al.|[2412.00370](http://arxiv.org/abs/2412.00370)|**[link](https://github.com/CPNGroup/Multi_Level_EC)**|\n", "2412.04192": "|**2024-11-28**|**Traffic-cognitive Slicing for Resource-efficient Offloading with Dual-distillation DRL in Multi-edge Systems**|Ting Xiaoyang et.al.|[2412.04192](http://arxiv.org/abs/2412.04192)|null|\n", "2411.17782": "|**2024-11-26**|**Joint Resource Optimization, Computation Offloading and Resource Slicing for Multi-Edge Traffic-Cognitive Networks**|Ting Xiaoyang et.al.|[2411.17782](http://arxiv.org/abs/2411.17782)|null|\n", "2411.15687": "|**2024-11-24**|**Algorithmics and Complexity of Cost-Driven Task Offloading with Submodular Optimization in Edge-Cloud Environments**|Longkun Guo et.al.|[2411.15687](http://arxiv.org/abs/2411.15687)|null|\n", "2412.12102": "|**2024-11-16**|**Distributed Collaborative Inference System in Next-Generation Networks and Communication**|Chuan Zhang et.al.|[2412.12102](http://arxiv.org/abs/2412.12102)|null|\n", "2411.10770": "|**2024-11-16**|**Task Offloading for Vehicular Edge Computing Based on Improved Hotstuff under Parking Assistance**|Guoling Liang et.al.|[2411.10770](http://arxiv.org/abs/2411.10770)|null|\n", "2411.10560": "|**2024-11-15**|**A Combined Environmental Monitoring Framework based on WSN Clustering and VANET Edge Computation Offloading**|Basilis Mamalis et.al.|[2411.10560](http://arxiv.org/abs/2411.10560)|null|\n", "2411.09712": "|**2024-11-12**|**Space-Air-Ground Integrated MEC-Assisted Industrial Cyber-Physical Systems: An Online Decentralized Optimization Approach**|Long He et.al.|[2411.09712](http://arxiv.org/abs/2411.09712)|null|\n", "2411.07485": "|**2024-11-12**|**Decentralized Network Topology Design for Task Offloading in Mobile Edge Computing**|Ke Ma et.al.|[2411.07485](http://arxiv.org/abs/2411.07485)|null|\n", "2411.04762": "|**2024-12-02**|**JC5A: Service Delay Minimization for Aerial MEC-assisted Industrial Cyber-Physical Systems**|Geng Sun et.al.|[2411.04762](http://arxiv.org/abs/2411.04762)|null|\n", "2411.15150": "|**2024-11-07**|**Real-Time Aware IP-Networking for Resource-Constrained Embedded Devices**|Ilja Behnke et.al.|[2411.15150](http://arxiv.org/abs/2411.15150)|null|\n", "2411.00397": "|**2024-12-13**|**Distributed Computation Offloading for Energy Provision Minimization in WP-MEC Networks with Multiple HAPs**|Xiaoying Liu et.al.|[2411.00397](http://arxiv.org/abs/2411.00397)|null|\n", "2411.00859": "|**2024-10-30**|**Profiling AI Models: Towards Efficient Computation Offloading in Heterogeneous Edge AI Systems**|Juan Marcelo Parra-Ullauri et.al.|[2411.00859](http://arxiv.org/abs/2411.00859)|null|\n", "2410.14142": "|**2024-10-21**|**Secure Collaborative Computation Offloading and Resource Allocation in Cache-Assisted Ultra-Dense IoT Networks With Multi-Slope Channels**|Tianqing Zhou et.al.|[2410.14142](http://arxiv.org/abs/2410.14142)|null|\n", "2410.12186": "|**2024-10-16**|**Joint Data Compression, Secure Multi-Part Collaborative Task Offloading and Resource Assignment in Ultra-Dense Networks**|Tianqing Zhou et.al.|[2410.12186](http://arxiv.org/abs/2410.12186)|null|\n", "2410.10071": "|**2024-10-14**|**Content Caching-Assisted Vehicular Edge Computing Using Multi-Agent Graph Attention Reinforcement Learning**|Jinjin Shen et.al.|[2410.10071](http://arxiv.org/abs/2410.10071)|null|\n", "2410.06934": "|**2024-10-09**|**VEC-Sim: A Simulation Platform for Evaluating Service Caching and Computation Offloading Policies in Vehicular Edge Networks**|Fan Wu et.al.|[2410.06934](http://arxiv.org/abs/2410.06934)|null|\n", "2410.06627": "|**2024-10-09**|**Variations in Multi-Agent Actor-Critic Frameworks for Joint Optimizations in UAV Swarm Networks: Recent Evolution, Challenges, and Directions**|Muhammad Morshed Alam et.al.|[2410.06627](http://arxiv.org/abs/2410.06627)|null|\n", "2410.03472": "|**2024-10-08**|**Deep Reinforcement Learning for Delay-Optimized Task Offloading in Vehicular Fog Computing**|Mohammad Parsa Toopchinezhad et.al.|[2410.03472](http://arxiv.org/abs/2410.03472)|**[link](https://github.com/Procedurally-Generated-Human/VFC-Offloading-RL)**|\n", "2409.19869": "|**2024-09-30**|**Edge Intelligence in Satellite-Terrestrial Networks with Hybrid Quantum Computing**|Siyue Huang et.al.|[2409.19869](http://arxiv.org/abs/2409.19869)|null|\n", "2409.18675": "|**2024-09-27**|**Online and Utility-Power Efficient Task Scheduling in Homogeneous Fog Networks**|Fatemeh Ebadi et.al.|[2409.18675](http://arxiv.org/abs/2409.18675)|null|\n", "2409.17882": "|**2024-09-26**|**Multi-UAV Enabled MEC Networks: Optimizing Delay through Intelligent 3D Trajectory Planning and Resource Allocation**|Zhiying Wang et.al.|[2409.17882](http://arxiv.org/abs/2409.17882)|null|\n", "2409.17681": "|**2024-09-26**|**Computation Pre-Offloading for MEC-Enabled Vehicular Networks via Trajectory Prediction**|Ting Zhang et.al.|[2409.17681](http://arxiv.org/abs/2409.17681)|null|\n", "2409.17667": "|**2024-09-26**|**SLO-Aware Task Offloading within Collaborative Vehicle Platoons**|Boris Sedlak et.al.|[2409.17667](http://arxiv.org/abs/2409.17667)|null|\n", "2409.16537": "|**2024-09-25**|**A QoE-Aware Split Inference Accelerating Algorithm for NOMA-based Edge Intelligence**|Xin Yuan et.al.|[2409.16537](http://arxiv.org/abs/2409.16537)|null|\n", "2409.16115": "|**2024-09-24**|**Mean Age of Information in Partial Offloading Mobile Edge Computing Networks**|Ying Dong et.al.|[2409.16115](http://arxiv.org/abs/2409.16115)|null|\n", "2409.14782": "|**2024-09-23**|**Energy-Efficient Multi-UAV-Enabled MEC Systems with Space-Air-Ground Integrated Networks**|Wenchao Liu et.al.|[2409.14782](http://arxiv.org/abs/2409.14782)|null|\n", "2409.10839": "|**2024-09-17**|**Dynamic DAG-Application Scheduling for Multi-Tier Edge Computing in Heterogeneous Networks**|Xiang Li et.al.|[2409.10839](http://arxiv.org/abs/2409.10839)|null|\n", "2409.18977": "|**2024-09-13**|**Dynamic Pricing based Near-Optimal Resource Allocation for Elastic Edge Offloading**|Yun Xia et.al.|[2409.18977](http://arxiv.org/abs/2409.18977)|null|\n", "2409.07911": "|**2024-09-12**|**Tera-SpaceCom: GNN-based Deep Reinforcement Learning for Joint Resource Allocation and Task Offloading in TeraHertz Band Space Networks**|Zhifeng Hu et.al.|[2409.07911](http://arxiv.org/abs/2409.07911)|null|\n", "2409.06078": "|**2024-11-26**|**PEERNet: An End-to-End Profiling Tool for Real-Time Networked Robotic Systems**|Aditya Narayanan et.al.|[2409.06078](http://arxiv.org/abs/2409.06078)|**[link](https://github.com/utaustin-swarmlab/peernet)**|\n", "2409.02548": "|**2024-09-04**|**A Joint Time and Energy-Efficient Federated Learning-based Computation Offloading Method for Mobile Edge Computing**|Anwesha Mukherjee et.al.|[2409.02548](http://arxiv.org/abs/2409.02548)|null|\n", "2409.02518": "|**2024-09-04**|**AirFogSim: A Light-Weight and Modular Simulator for UAV-Integrated Vehicular Fog Computing**|Zhiwei Wei et.al.|[2409.02518](http://arxiv.org/abs/2409.02518)|**[link](https://github.com/zhiweiwei-nami/airfogsim)**|\n", "2408.15481": "|**2024-08-28**|**Joint Offloading and Beamforming Design in Integrating Sensing, Communication, and Computing Systems: A Distributed Approach**|Peng Liu et.al.|[2408.15481](http://arxiv.org/abs/2408.15481)|null|\n", "2408.14831": "|**2024-08-27**|**DRL-Based Federated Self-Supervised Learning for Task Offloading and Resource Allocation in ISAC-Enabled Vehicle Edge Computing**|Xueying Gu et.al.|[2408.14831](http://arxiv.org/abs/2408.14831)|**[link](https://github.com/qiongwu86/federated-ssl-task-offloading-and-resource-allocation)**|\n", "2408.13605": "|**2024-08-24**|**Mobile Edge Computing Networks: Online Low-Latency and Fresh Service Provisioning**|Yuhan Yi et.al.|[2408.13605](http://arxiv.org/abs/2408.13605)|null|\n", "2408.13512": "|**2024-08-24**|**Unleashing Collaborative Computing for Adaptive Video Streaming with Multi-objective Optimization in Satellite Terrestrial Networks**|Zhishu Shen et.al.|[2408.13512](http://arxiv.org/abs/2408.13512)|null|\n", "2408.12860": "|**2024-08-23**|**Active STAR-RIS Empowered Edge System for Enhanced Energy Efficiency and Task Management**|Pyae Sone Aung et.al.|[2408.12860](http://arxiv.org/abs/2408.12860)|null|\n", "2408.05712": "|**2024-08-11**|**DeepAir: A Multi-Agent Deep Reinforcement Learning Based Scheme for an Unknown User Location Problem**|Baris Yamansavascilar et.al.|[2408.05712](http://arxiv.org/abs/2408.05712)|null|\n", "2408.02549": "|**2024-12-19**|**Generative AI as a Service in 6G Edge-Cloud: Generation Task Offloading by In-context Learning**|Hao Zhou et.al.|[2408.02549](http://arxiv.org/abs/2408.02549)|null|\n", "2408.02037": "|**2024-08-04**|**Distributionally Robust Optimization for Computation Offloading in Aerial Access Networks**|Guanwang Jiang et.al.|[2408.02037](http://arxiv.org/abs/2408.02037)|null|\n", "2408.01248": "|**2024-08-02**|**Deep progressive reinforcement learning-based flexible resource scheduling framework for IRS and UAV-assisted MEC system**|Li Dong et.al.|[2408.01248](http://arxiv.org/abs/2408.01248)|null|\n", "2407.21352": "|**2024-07-31**|**Priority and Stackelberg Game-Based Incentive Task Allocation for Device-Assisted MEC Networks**|Yang Li et.al.|[2407.21352](http://arxiv.org/abs/2407.21352)|null|\n", "2407.19657": "|**2024-07-29**|**Sustainable Task Offloading in Secure UAV-assisted Smart Farm Networks: A Multi-Agent DRL with Action Mask Approach**|Tingnan Bao et.al.|[2407.19657](http://arxiv.org/abs/2407.19657)|null|\n", "2407.19121": "|**2024-07-26**|**Task Offloading in Fog Computing with Deep Reinforcement Learning: Future Research Directions Based on Security and Efficiency Enhancements**|Amir Pakmehr et.al.|[2407.19121](http://arxiv.org/abs/2407.19121)|null|\n", "2407.14793": "|**2024-07-20**|**QoS Aware Mixed-Criticality Task Scheduling in Vehicular Edge Cloud System**|Suvarthi Sarkar et.al.|[2407.14793](http://arxiv.org/abs/2407.14793)|null|\n", "2407.11531": "|**2024-07-16**|**Finite State Machines-Based Path-Following Collaborative Computing Strategy for Emergency UAV Swarms**|Jialin Hu et.al.|[2407.11531](http://arxiv.org/abs/2407.11531)|null|\n", "2407.11310": "|**2024-07-16**|**Digital Twin Vehicular Edge Computing Network: Task Offloading and Resource Allocation**|Yu Xie et.al.|[2407.11310](http://arxiv.org/abs/2407.11310)|**[link](https://github.com/qiongwu86/digital-twin-vehicular-edge-computing-network_task-offloading-and-resource-allocation)**|\n", "2407.11155": "|**2025-01-02**|**Joint Optimization of Completion Ratio and Latency of Offloaded Tasks with Multiple Priority Levels in 5G Edge**|Parisa Fard Moshiri et.al.|[2407.11155](http://arxiv.org/abs/2407.11155)|null|\n", "2407.10770": "|**2024-08-02**|**Globally-Constrained Decentralized Optimization with Variable Coupling**|Dandan Wang et.al.|[2407.10770](http://arxiv.org/abs/2407.10770)|null|\n", "2407.05571": "|**2024-07-08**|**Cost-Efficient Computation Offloading in SAGIN: A Deep Reinforcement Learning and Perception-Aided Approach**|Yulan Gao et.al.|[2407.05571](http://arxiv.org/abs/2407.05571)|null|\n", "2407.03804": "|**2024-07-04**|**Multi-Time Scale Service Caching and Pricing in MEC Systems with Dynamic Program Popularity**|Yiming Chen et.al.|[2407.03804](http://arxiv.org/abs/2407.03804)|null|\n", "2407.03280": "|**2024-07-03**|**Cooperative Multi-Agent Deep Reinforcement Learning Methods for UAV-aided Mobile Edge Computing Networks**|Mintae Kim et.al.|[2407.03280](http://arxiv.org/abs/2407.03280)|null|\n", "2407.02342": "|**2024-07-01**|**Optimizing Age of Information in Vehicular Edge Computing with Federated Graph Neural Network Multi-Agent Reinforcement Learning**|Wenhua Wang et.al.|[2407.02342](http://arxiv.org/abs/2407.02342)|**[link](https://github.com/qiongwu86/optimizing-aoi-in-vec-with-federated-graph-neural-network-multi-agent-reinforcement-learning)**|\n", "2407.01086": "|**2024-07-01**|**Terahertz Communication Multi-UAV-Assisted Mobile Edge Computing System**|Heekang Song et.al.|[2407.01086](http://arxiv.org/abs/2407.01086)|null|\n", "2407.00933": "|**2024-07-01**|**Reconfigurable Intelligent Computational Surfaces for MEC-Assisted Autonomous Driving Networks: Design Optimization and Analysis**|Xueyao Zhang et.al.|[2407.00933](http://arxiv.org/abs/2407.00933)|null|\n", "2407.00565": "|**2024-10-08**|**A Multi-Layered Distributed Computing Framework for Enhanced Edge Computing**|Ke Ma et.al.|[2407.00565](http://arxiv.org/abs/2407.00565)|null|\n", "2406.19871": "|**2024-06-28**|**Koopman based trajectory model and computation offloading for high mobility paradigm in ISAC enabled IoT system**|Minh-Tuan Tran et.al.|[2406.19871](http://arxiv.org/abs/2406.19871)|null|\n", "2407.11018": "|**2024-06-28**|**Online Multi-Task Offloading for Semantic-Aware Edge Computing Systems**|Xuyang Chen et.al.|[2407.11018](http://arxiv.org/abs/2407.11018)|null|\n", "2406.19806": "|**2024-06-28**|**Prediction based computation offloading and resource allocation for multi-access ISAC enabled IoT system**|Duc-Thuan Le et.al.|[2406.19806](http://arxiv.org/abs/2406.19806)|null|\n", "2406.18117": "|**2024-06-26**|**Resilient and Secure Programmable System-on-Chip Accelerator Offload**|In\u00eas Pinto Gouveia et.al.|[2406.18117](http://arxiv.org/abs/2406.18117)|null|\n", "2407.12011": "|**2024-06-24**|**Digital Twinning of a Pressurized Water Reactor Startup Operation and Partial Computational Offloading in In-network Computing-Assisted Multiaccess Edge Computing**|Ibrahim Aliyu et.al.|[2407.12011](http://arxiv.org/abs/2407.12011)|null|\n", "2407.00080": "|**2024-06-24**|**Decentralized Task Offloading and Load-Balancing for Mobile Edge Computing in Dense Networks**|Mariam Yahya et.al.|[2407.00080](http://arxiv.org/abs/2407.00080)|null|\n", "2406.11318": "|**2024-06-17**|**Reconfigurable Intelligent Surface Assisted VEC Based on Multi-Agent Reinforcement Learning**|Kangwei Qi et.al.|[2406.11318](http://arxiv.org/abs/2406.11318)|**[link](https://github.com/qiongwu86/ris-vec-marl)**|\n", "2406.11918": "|**2024-06-17**|**QoE Maximization for Multiple-UAV-Assisted Multi-Access Edge Computing: An Online Joint Optimization Approach**|Long He et.al.|[2406.11918](http://arxiv.org/abs/2406.11918)|null|\n", "2406.10895": "|**2024-08-02**|**Fair Computation Offloading for RSMA-Assisted Mobile Edge Computing Networks**|Ding Xu et.al.|[2406.10895](http://arxiv.org/abs/2406.10895)|null|\n", "2406.07087": "|**2024-06-11**|**Edge Rendering Architecture for multiuser XR Experiences and E2E Performance Assessment**|Inhar Yeregui et.al.|[2406.07087](http://arxiv.org/abs/2406.07087)|null|\n", "2406.06986": "|**2024-06-11**|**DNN Partitioning, Task Offloading, and Resource Allocation in Dynamic Vehicular Networks: A Lyapunov-Guided Diffusion-Based Reinforcement Learning Approach**|Zhang Liu et.al.|[2406.06986](http://arxiv.org/abs/2406.06986)|null|\n", "2406.05422": "|**2024-06-08**|**Diffusion-based Reinforcement Learning for Dynamic UAV-assisted Vehicle Twins Migration in Vehicular Metaverses**|Yongju Tong et.al.|[2406.05422](http://arxiv.org/abs/2406.05422)|null|\n", "2405.20587": "|**2024-05-31**|**Quality-Aware Task Offloading for Cooperative Perception in Vehicular Edge Computing**|Amr M. Zaki et.al.|[2405.20587](http://arxiv.org/abs/2405.20587)|null|\n", "2405.18739": "|**2024-05-29**|**FlocOff: Data Heterogeneity Resilient Federated Learning with Communication-Efficient Edge Offloading**|Mulei Ma et.al.|[2405.18739](http://arxiv.org/abs/2405.18739)|null|\n", "2405.16078": "|**2024-06-26**|**An Multi-resources Integration Empowered Task Offloading in Internet of Vehicles: From the Perspective of Wireless Interference**|Xiaowu Liu et.al.|[2405.16078](http://arxiv.org/abs/2405.16078)|null|\n", "2405.16060": "|**2024-05-25**|**Delay-Effective Task Offloading Technology in Internet of Vehicles: From the Perspective of the Vehicle Platooning**|Kan Yu et.al.|[2405.16060](http://arxiv.org/abs/2405.16060)|null|\n", "2405.11352": "|**2024-05-18**|**Hierarchical Reinforcement Learning Empowered Task Offloading in V2I Networks**|Xinyu You et.al.|[2405.11352](http://arxiv.org/abs/2405.11352)|null|\n", "2405.06507": "|**2024-05-10**|**EcoEdgeTwin: Enhanced 6G Network via Mobile Edge Computing and Digital Twin Integration**|Synthia Hossain Karobi et.al.|[2405.06507](http://arxiv.org/abs/2405.06507)|null|\n", "2405.06297": "|**2024-05-10**|**Joint Uplink and Downlink Rate Splitting for Fog Computing-Enabled Internet of Medical Things**|Jiasi Zhou et.al.|[2405.06297](http://arxiv.org/abs/2405.06297)|null|\n", "2405.03181": "|**2024-05-20**|**Collaborative Satellite Computing through Adaptive DNN Task Splitting and Offloading**|Shifeng Peng et.al.|[2405.03181](http://arxiv.org/abs/2405.03181)|null|\n", "2405.02972": "|**2024-05-05**|**Multi-Agent RL-Based Industrial AIGC Service Offloading over Wireless Edge Networks**|Siyuan Li et.al.|[2405.02972](http://arxiv.org/abs/2405.02972)|null|\n", "2405.02682": "|**2024-05-04**|**Deduplicator: When Computation Reuse Meets Load Balancing at the Network Edge**|Md Washik Al Azad et.al.|[2405.02682](http://arxiv.org/abs/2405.02682)|**[link](https://github.com/malazad/deduplicator)**|\n", "2404.18406": "|**2024-04-29**|**Movable Antenna-Enhanced Wireless Powered Mobile Edge Computing Systems**|Pengcheng Chen et.al.|[2404.18406](http://arxiv.org/abs/2404.18406)|null|\n", "2404.12584": "|**2024-04-19**|**Multi-Objective Offloading Optimization in MEC and Vehicular-Fog Systems: A Distributed-TD3 Approach**|Frezer Guteta Wakgra et.al.|[2404.12584](http://arxiv.org/abs/2404.12584)|null|\n", "2404.09477": "|**2024-04-15**|**Servers Placement Scheme Based on All-pay Auction Framework in Mobile Edge Computing**|Yun Xia et.al.|[2404.09477](http://arxiv.org/abs/2404.09477)|null|\n", "2404.09285": "|**2024-04-30**|**Egret: Reinforcement Mechanism for Sequential Computation Offloading in Edge Computing**|Haosong Peng et.al.|[2404.09285](http://arxiv.org/abs/2404.09285)|null|\n", "2404.08396": "|**2024-04-12**|**Joint Computation Offloading and Target Tracking in Integrated Sensing and Communication Enabled UAV Networks**|Trinh Van Chien et.al.|[2404.08396](http://arxiv.org/abs/2404.08396)|null|\n", "2407.01540": "|**2024-04-08**|**Towards a Partial Computation offloading in In-networking Computing-Assisted MEC: A Digital Twin Approach**|Ibrahim Aliyu et.al.|[2407.01540](http://arxiv.org/abs/2407.01540)|null|\n", "2501.04267": "|**2025-01-08**|**A 5G-Edge Architecture for Computational Offloading of Computer Vision Applications**|Marcelo V. B. da Silva et.al.|[2501.04267](http://arxiv.org/abs/2501.04267)|null|\n", "2501.04496": "|**2025-01-05**|**Towards Beyond Communications 6G Networks Status and Challenges**|Vasileios Tsekenis et.al.|[2501.04496](http://arxiv.org/abs/2501.04496)|null|\n", "2501.06410": "|**2025-01-11**|**Task Delay and Energy Consumption Minimization for Low-altitude MEC via Evolutionary Multi-objective Deep Reinforcement Learning**|Geng Sun et.al.|[2501.06410](http://arxiv.org/abs/2501.06410)|null|\n", "2501.05660": "|**2025-01-10**|**Fully Decentralized Computation Offloading in Priority-Driven Edge Computing Systems**|Shubham Aggarwal et.al.|[2501.05660](http://arxiv.org/abs/2501.05660)|null|\n", "2501.06242": "|**2025-01-08**|**Intelligent Task Offloading: Advanced MEC Task Offloading and Resource Management in 5G Networks**|Alireza Ebrahimi et.al.|[2501.06242](http://arxiv.org/abs/2501.06242)|null|\n", "2501.06194": "|**2024-12-24**|**Energy Efficient Computation Offloading and Virtual Connection Control in Uplink Small Cell Networks**|Davoud Yousefi et.al.|[2501.06194](http://arxiv.org/abs/2501.06194)|null|\n", "2501.07585": "|**2025-01-02**|**Multi-task Domain Adaptation for Computation Offloading in Edge-intelligence Networks**|Runxin Han et.al.|[2501.07585](http://arxiv.org/abs/2501.07585)|null|\n", "2501.11557": "|**2025-01-20**|**Secure Resource Allocation via Constrained Deep Reinforcement Learning**|Jianfei Sun et.al.|[2501.11557](http://arxiv.org/abs/2501.11557)|null|\n", "2501.11333": "|**2025-01-20**|**A Dynamic Improvement Framework for Vehicular Task Offloading**|Qianren Li et.al.|[2501.11333](http://arxiv.org/abs/2501.11333)|null|\n", "2501.13227": "|**2025-01-22**|**Joint Task Offloading and User Scheduling in 5G MEC under Jamming Attacks**|Mohammadreza Amini et.al.|[2501.13227](http://arxiv.org/abs/2501.13227)|null|\n", "2501.15577": "|**2025-01-26**|**Vehicular Multi-Tier Distributed Computing with Hybrid THz-RF Transmission in Satellite-Terrestrial Integrated Networks**|Ni Zhang et.al.|[2501.15577](http://arxiv.org/abs/2501.15577)|null|\n", "2501.15305": "|**2025-01-25**|**Enhancing Disaster Resilience with UAV-Assisted Edge Computing: A Reinforcement Learning Approach to Managing Heterogeneous Edge Devices**|Talha Azfar et.al.|[2501.15305](http://arxiv.org/abs/2501.15305)|null|\n", "2501.15203": "|**2025-01-25**|**Reinforcement Learning Controlled Adaptive PSO for Task Offloading in IIoT Edge Computing**|Minod Perera et.al.|[2501.15203](http://arxiv.org/abs/2501.15203)|**[link](https://github.com/MinodRashmika/APSO_SAC_IIOT)**|\n", "2501.15164": "|**2025-01-31**|**UAV-Assisted MEC Architecture for Collaborative Task Offloading in Urban IoT Environment**|Subhrajit Barick et.al.|[2501.15164](http://arxiv.org/abs/2501.15164)|null|\n", "2501.14205": "|**2025-01-24**|**Serving Long-Context LLMs at the Mobile Edge: Test-Time Reinforcement Learning-based Model Caching and Inference Offloading**|Minrui Xu et.al.|[2501.14205](http://arxiv.org/abs/2501.14205)|null|\n", "2501.17014": "|**2025-01-28**|**Network Slice-based Low-Altitude Intelligent Network for Advanced Air Mobility**|Kai Xiong et.al.|[2501.17014](http://arxiv.org/abs/2501.17014)|null|\n", "2501.18718": "|**2025-01-30**|**Distributed Offloading in Multi-Access Edge Computing Systems: A Mean-Field Perspective**|Shubham Aggarwal et.al.|[2501.18718](http://arxiv.org/abs/2501.18718)|null|\n", "2502.03403": "|**2025-02-05**|**Lightweight Authenticated Task Offloading in 6G-Cloud Vehicular Twin Networks**|Sarah Al-Shareeda et.al.|[2502.03403](http://arxiv.org/abs/2502.03403)|null|\n", "2502.02886": "|**2025-02-06**|**Advancements in Mobile Edge Computing and Open RAN: Leveraging Artificial Intelligence and Machine Learning for Wireless Systems**|Ryan Barker et.al.|[2502.02886](http://arxiv.org/abs/2502.02886)|null|\n", "2502.04827": "|**2025-02-07**|**Uplink Rate-Splitting Multiple Access for Mobile Edge Computing with Short-Packet Communications**|Jiawei Xu et.al.|[2502.04827](http://arxiv.org/abs/2502.04827)|null|\n", "2502.06963": "|**2025-02-10**|**Task Offloading in Vehicular Edge Computing using Deep Reinforcement Learning: A Survey**|Ashab Uddin et.al.|[2502.06963](http://arxiv.org/abs/2502.06963)|null|\n", "2502.06581": "|**2025-02-27**|**A Survey on Video Analytics in Cloud-Edge-Terminal Collaborative Systems**|Linxiao Gong et.al.|[2502.06581](http://arxiv.org/abs/2502.06581)|null|\n", "2502.08119": "|**2025-02-12**|**Generative AI-Enhanced Cooperative MEC of UAVs and Ground Stations for Unmanned Surface Vehicles**|Jiahao You et.al.|[2502.08119](http://arxiv.org/abs/2502.08119)|null|\n", "2502.10149": "|**2025-02-14**|**IRS-assisted Edge Computing for Vehicular Networks: A Generative Diffusion Model-based Stackelberg Game Approach**|Yixian Wang et.al.|[2502.10149](http://arxiv.org/abs/2502.10149)|null|\n", "2502.12875": "|**2025-02-18**|**A Survey on DRL based UAV Communications and Networking: DRL Fundamentals, Applications and Implementations**|Wei Zhao et.al.|[2502.12875](http://arxiv.org/abs/2502.12875)|null|\n", "2502.16495": "|**2025-02-27**|**Orchestrating Joint Offloading and Scheduling for Low-Latency Edge SLAM**|Yao Zhang et.al.|[2502.16495](http://arxiv.org/abs/2502.16495)|null|\n", "2502.15903": "|**2025-02-21**|**Computation Offloading Strategies in Integrated Terrestrial and Non-Terrestrial Networks**|Muhammad Ahmed Mohsin et.al.|[2502.15903](http://arxiv.org/abs/2502.15903)|null|\n", "2503.03391": "|**2025-03-05**|**Multi-Agent DRL for Queue-Aware Task Offloading in Hierarchical MEC-Enabled Air-Ground Networks**|Muhammet Hevesli et.al.|[2503.03391](http://arxiv.org/abs/2503.03391)|null|\n", "2503.04397": "|**2025-03-06**|**Energy-Aware Task Offloading for Rotatable STAR-RIS-Enhanced Mobile Edge Computing Systems**|Dongdong Yang et.al.|[2503.04397](http://arxiv.org/abs/2503.04397)|null|\n", "2503.08001": "|**2025-03-11**|**Joint Semantic Transmission and Resource Allocation for Intelligent Computation Task Offloading in MEC Systems**|Yuanpeng Zheng et.al.|[2503.08001](http://arxiv.org/abs/2503.08001)|null|\n", "2503.16879": "|**2025-03-21**|**Rotatable RIS-Assisted Edge Computing: Orientation, Task Offloading, and Resource Optimization**|Bin Li et.al.|[2503.16879](http://arxiv.org/abs/2503.16879)|null|\n", "2503.19320": "|**2025-03-25**|**A Reliable and Efficient 5G Vehicular MEC: Guaranteed Task Completion with Minimal Latency**|Mahsa Paknejad et.al.|[2503.19320](http://arxiv.org/abs/2503.19320)|null|\n", "2503.19319": "|**2025-03-25**|**Partitioned Task Offloading for Low-Latency and Reliable Task Completion in 5G MEC**|Parisa Fard Moshiri et.al.|[2503.19319](http://arxiv.org/abs/2503.19319)|null|\n", "2503.20256": "|**2025-03-26**|**Sequential Task Assignment and Resource Allocation in V2X-Enabled Mobile Edge Computing**|Yufei Ye et.al.|[2503.20256](http://arxiv.org/abs/2503.20256)|null|\n", "2504.00453": "|**2025-04-01**|**Efficient and Sustainable Task Offloading in UAV-Assisted MEC Systems via Meta Deep Reinforcement Learning**|Maryam Farajzadeh Dehkordi et.al.|[2504.00453](http://arxiv.org/abs/2504.00453)|null|\n", "2504.07119": "|**2025-03-26**|**UAV-Assisted MEC for Disaster Response: Stackelberg Game-Based Resource Optimization**|Yafei Guo et.al.|[2504.07119](http://arxiv.org/abs/2504.07119)|null|\n", "2504.08134": "|**2025-04-10**|**Hybrid Reinforcement Learning-based Sustainable Multi-User Computation Offloading for Mobile Edge-Quantum Computing**|Minrui Xu et.al.|[2504.08134](http://arxiv.org/abs/2504.08134)|null|\n", "2504.09437": "|**2025-04-13**|**PLS-Assisted Offloading for Edge Computing-Enabled Post-Quantum Security in Resource-Constrained Devices**|Hamid Amiriara et.al.|[2504.09437](http://arxiv.org/abs/2504.09437)|null|\n", "2504.15162": "|**2025-04-21**|**To Offload or Not To Offload: Model-driven Comparison of Edge-native and On-device Processing**|Nathan Ng et.al.|[2504.15162](http://arxiv.org/abs/2504.15162)|null|\n", "2504.13554": "|**2025-04-18**|**Task Assignment and Exploration Optimization for Low Altitude UAV Rescue via Generative AI Enhanced Multi-agent Reinforcement Learning**|Xin Tang et.al.|[2504.13554](http://arxiv.org/abs/2504.13554)|null|\n", "2504.16792": "|**2025-04-23**|**Preemption Aware Task Scheduling for Priority and Deadline Constrained DNN Inference Task Offloading in Homogeneous Mobile-Edge Networks**|Jamie Cotter et.al.|[2504.16792](http://arxiv.org/abs/2504.16792)|null|\n", "2504.16729": "|**2025-04-23**|**MEC Task Offloading in AIoT: A User-Centric DRL Model Splitting Inference Scheme**|Weixi Li et.al.|[2504.16729](http://arxiv.org/abs/2504.16729)|null|\n", "2504.17526": "|**2025-04-24**|**Cooperative Task Offloading through Asynchronous Deep Reinforcement Learning in Mobile Edge Computing for Future Networks**|Yuelin Liu et.al.|[2504.17526](http://arxiv.org/abs/2504.17526)|null|\n", "2504.18031": "|**2025-04-25**|**Joint Resource Estimation and Trajectory Optimization for eVTOL-involved CR network: A Monte Carlo Tree Search-based Approach**|Kai Xiong et.al.|[2504.18031](http://arxiv.org/abs/2504.18031)|null|\n", "2504.20735": "|**2025-04-29**|**Intelligent Task Offloading in VANETs: A Hybrid AI-Driven Approach for Low-Latency and Energy Efficiency**|Tariq Qayyum et.al.|[2504.20735](http://arxiv.org/abs/2504.20735)|null|\n", "2505.00848": "|**2025-05-01**|**SeLR: Sparsity-enhanced Lagrangian Relaxation for Computation Offloading at the Edge**|Negar Erfaniantaghvayi et.al.|[2505.00848](http://arxiv.org/abs/2505.00848)|**[link](https://github.com/Negar-Erfanian/SeLR)**|\n", "2505.04272": "|**2025-05-07**|**Joint Task Offloading and Channel Allocation in Spatial-Temporal Dynamic for MEC Networks**|Tianyi Shi et.al.|[2505.04272](http://arxiv.org/abs/2505.04272)|null|\n", "2505.06678": "|**2025-05-10**|**Distributionally Robust Contract Theory for Edge AIGC Services in Teleoperation**|Zijun Zhan et.al.|[2505.06678](http://arxiv.org/abs/2505.06678)|**[link](https://github.com/zijun0819/dro-contract-theory)**|\n", "2505.13331": "|**2025-05-19**|**Learning Driven Elastic Task Multi-Connectivity Immersive Computing Systems**|Babak Badnava et.al.|[2505.13331](http://arxiv.org/abs/2505.13331)|null|\n", "2505.10815": "|**2025-05-16**|**Enhancing Secrecy Energy Efficiency in RIS-Aided Aerial Mobile Edge Computing Networks: A Deep Reinforcement Learning Approach**|Aly Sabri Abdalla et.al.|[2505.10815](http://arxiv.org/abs/2505.10815)|null|\n", "2505.22149": "|**2025-05-28**|**Real-World Modeling of Computation Offloading for Neural Networks with Early Exits and Splits**|Jan Danek et.al.|[2505.22149](http://arxiv.org/abs/2505.22149)|null|\n", "2506.02668": "|**2025-06-03**|**FAuNO: Semi-Asynchronous Federated Reinforcement Learning Framework for Task Offloading in Edge Systems**|Frederico Metelo et.al.|[2506.02668](http://arxiv.org/abs/2506.02668)|null|\n", "2506.02458": "|**2025-06-03**|**A Novel Deep Reinforcement Learning Method for Computation Offloading in Multi-User Mobile Edge Computing with Decentralization**|Nguyen Chi Long et.al.|[2506.02458](http://arxiv.org/abs/2506.02458)|null|\n", "2506.02233": "|**2025-06-02**|**Improving compiler support for SIMD offload using Arm Streaming SVE**|Mohamed Husain Noor Mohamed et.al.|[2506.02233](http://arxiv.org/abs/2506.02233)|null|\n", "2506.04456": "|**2025-06-04**|**Knowledge-Guided Attention-Inspired Learning for Task Offloading in Vehicle Edge Computing**|Ke Ma et.al.|[2506.04456](http://arxiv.org/abs/2506.04456)|null|\n", "2506.07598": "|**2025-06-18**|**Computation Capacity Maximization for Pinching Antennas-Assisted Wireless Powered MEC Systems**|Peng Liu et.al.|[2506.07598](http://arxiv.org/abs/2506.07598)|null|\n", "2506.09180": "|**2025-06-10**|**Optimal Task Offloading with Firm Deadlines for Mobile Edge Computing Systems**|Khai Doan et.al.|[2506.09180](http://arxiv.org/abs/2506.09180)|null|\n", "2506.13626": "|**2025-06-16**|**Delay-optimal Congestion-aware Routing and Computation Offloading in Arbitrary Network**|Jinkun Zhang et.al.|[2506.13626](http://arxiv.org/abs/2506.13626)|null|\n", "2506.12195": "|**2025-06-13**|**OSI Stack Redesign for Quantum Networks: Requirements, Technologies, Challenges, and Future Directions**|Shakil Ahmed et.al.|[2506.12195](http://arxiv.org/abs/2506.12195)|null|\n", "2506.15225": "|**2025-06-18**|**Joint Computation Offloading and Resource Allocation for Uncertain Maritime MEC via Cooperation of UAVs and Vessels**|Jiahao You et.al.|[2506.15225](http://arxiv.org/abs/2506.15225)|null|\n", "2506.21933": "|**2025-06-27**|**Joint Task Offloading and Resource Allocation in Low-Altitude MEC via Graph Attention Diffusion**|Yifan Xue et.al.|[2506.21933](http://arxiv.org/abs/2506.21933)|null|\n", "2506.22474": "|**2025-06-20**|**RL-based Adaptive Task Offloading in Mobile-Edge Computing for Future IoT Networks**|Ziad Qais Al Abbasi et.al.|[2506.22474](http://arxiv.org/abs/2506.22474)|null|\n", "2507.00710": "|**2025-07-01**|**Robust Task Offloading for UAV-enabled Secure MEC Against Aerial Eavesdropper**|Can Cui et.al.|[2507.00710](http://arxiv.org/abs/2507.00710)|null|\n", "2507.05722": "|**2025-07-08**|**Hierarchical Task Offloading for UAV-Assisted Vehicular Edge Computing via Deep Reinforcement Learning**|Hongbao Li et.al.|[2507.05722](http://arxiv.org/abs/2507.05722)|null|\n", "2507.09352": "|**2025-07-12**|**Reliable Task Offloading in MEC through Transmission Diversity and Jamming-Aware Scheduling**|Ghazal Asemian et.al.|[2507.09352](http://arxiv.org/abs/2507.09352)|null|\n", "2507.09346": "|**2025-07-12**|**Fast and Adaptive Task Management in MEC: A Deep Learning Approach Using Pointer Networks**|Arild Yonkeu et.al.|[2507.09346](http://arxiv.org/abs/2507.09346)|null|\n", "2507.09341": "|**2025-07-12**|**Meeting Deadlines in Motion: Deep RL for Real-Time Task Offloading in Vehicular Edge Networks**|Mahsa Paknejad et.al.|[2507.09341](http://arxiv.org/abs/2507.09341)|null|\n", "2507.13242": "|**2025-07-17**|**QTCAJOSA: Low-Complexity Joint Offloading and Subchannel Allocation for NTN-Enabled IoMT**|Alejandro Flores C. et.al.|[2507.13242](http://arxiv.org/abs/2507.13242)|null|\n", "2507.12910": "|**2025-07-17**|**Energy-Efficient RSMA-enabled Low-altitude MEC Optimization Via Generative AI-enhanced Deep Reinforcement Learning**|Xudong Wang et.al.|[2507.12910](http://arxiv.org/abs/2507.12910)|null|\n", "2507.12028": "|**2025-07-16**|**MOFCO: Mobility- and Migration-Aware Task Offloading in Three-Layer Fog Computing Environments**|Soheil Mahdizadeh et.al.|[2507.12028](http://arxiv.org/abs/2507.12028)|null|\n", "2507.11560": "|**2025-07-14**|**A Model Aware AIGC Task Offloading Algorithm in IIoT Edge Computing**|Xin Wang et.al.|[2507.11560](http://arxiv.org/abs/2507.11560)|null|\n", "2507.15670": "|**2025-07-21**|**Vehicular Cloud Computing: A cost-effective alternative to Edge Computing in 5G networks**|Rosario Patan\u00e8 et.al.|[2507.15670](http://arxiv.org/abs/2507.15670)|null|\n"}} -------------------------------------------------------------------------------- /docs/offloading-arxiv-daily-web.json: -------------------------------------------------------------------------------- 1 | {"Offloading": {"2501.02952": "|**2025-01-06**|**Online Collaborative Resource Allocation and Task Offloading for Multi-access Edge Computing**|Geng Sun et.al.|[2501.02952](http://arxiv.org/abs/2501.02952)|null|\n", "2501.02829": "|**2025-01-06**|**An Infrastructure Software Perspective Toward Computation Offloading between Executable Specifications and Foundation Models**|Dezhi Ran et.al.|[2501.02829](http://arxiv.org/abs/2501.02829)|null|\n", "2501.02001": "|**2025-01-01**|**Communication Efficient Cooperative Edge AI via Event-Triggered Computation Offloading**|You Zhou et.al.|[2501.02001](http://arxiv.org/abs/2501.02001)|null|\n", "2412.20820": "|**2024-12-30**|**Retrieval-Augmented Generation for Mobile Edge Computing via Large Language Model**|Runtao Ren et.al.|[2412.20820](http://arxiv.org/abs/2412.20820)|null|\n", "2412.15385": "|**2025-01-05**|**Joint Task Offloading and Routing in Wireless Multi-hop Networks Using Biased Backpressure Algorithm**|Zhongyuan Zhao et.al.|[2412.15385](http://arxiv.org/abs/2412.15385)|null|\n", "2412.13676": "|**2024-12-18**|**Robust UAV Jittering and Task Scheduling in Mobile Edge Computing with Data Compression**|Bin Li et.al.|[2412.13676](http://arxiv.org/abs/2412.13676)|null|\n", "2412.12646": "|**2024-12-17**|**A Measurement-Based Spatially Consistent Channel Model for Distributed MIMO in Industrial Environments**|Christian Nelson et.al.|[2412.12646](http://arxiv.org/abs/2412.12646)|null|\n", "2412.11351": "|**2024-12-16**|**Latency Minimization for Movable Antennas-Enabled Relay-aided D2D Mobile Edge Computing Communication Systems**|Yue Xiu et.al.|[2412.11351](http://arxiv.org/abs/2412.11351)|null|\n", "2412.10700": "|**2024-12-14**|**Cluster-Based Multi-Agent Task Scheduling for Space-Air-Ground Integrated Networks**|Zhiying Wang et.al.|[2412.10700](http://arxiv.org/abs/2412.10700)|null|\n", "2412.08296": "|**2024-12-15**|**GDSG: Graph Diffusion-based Solution Generator for Optimization Problems in MEC Networks**|Ruihuai Liang et.al.|[2412.08296](http://arxiv.org/abs/2412.08296)|**[link](https://github.com/qiyu3816/gdsg)**|\n", "2412.08284": "|**2024-12-11**|**Collaborative Inference for Large Models with Task Offloading and Early Exiting**|Zuan Xie et.al.|[2412.08284](http://arxiv.org/abs/2412.08284)|null|\n", "2412.06196": "|**2024-12-09**|**BECS: A Privacy-Preserving Computing Sharing Mechanism in 6G Computing Power Network**|Kun Yan et.al.|[2412.06196](http://arxiv.org/abs/2412.06196)|null|\n", "2412.04793": "|**2024-12-06**|**Distributed Massive MIMO-Aided Task Offloading in Satellite-Terrestrial Integrated Multi-Tier VEC Networks**|Yixin Liu et.al.|[2412.04793](http://arxiv.org/abs/2412.04793)|null|\n", "2412.04002": "|**2024-12-11**|**Hierarchical Learning for IRS-Assisted MEC Systems with Rate-Splitting Multiple Access**|Yinyu Wu et.al.|[2412.04002](http://arxiv.org/abs/2412.04002)|null|\n", "2412.03965": "|**2024-12-05**|**Offloading Revenue Maximization in Multi-UAV-Assisted Mobile Edge Computing for Video Stream**|Bin Li et.al.|[2412.03965](http://arxiv.org/abs/2412.03965)|null|\n", "2412.00370": "|**2024-11-30**|**Incentive-Driven Task Offloading and Collaborative Computing in Device-Assisted MEC Networks**|Yang Li et.al.|[2412.00370](http://arxiv.org/abs/2412.00370)|**[link](https://github.com/CPNGroup/Multi_Level_EC)**|\n", "2412.04192": "|**2024-11-28**|**Traffic-cognitive Slicing for Resource-efficient Offloading with Dual-distillation DRL in Multi-edge Systems**|Ting Xiaoyang et.al.|[2412.04192](http://arxiv.org/abs/2412.04192)|null|\n", "2411.17782": "|**2024-11-26**|**Joint Resource Optimization, Computation Offloading and Resource Slicing for Multi-Edge Traffic-Cognitive Networks**|Ting Xiaoyang et.al.|[2411.17782](http://arxiv.org/abs/2411.17782)|null|\n", "2411.15687": "|**2024-11-24**|**Algorithmics and Complexity of Cost-Driven Task Offloading with Submodular Optimization in Edge-Cloud Environments**|Longkun Guo et.al.|[2411.15687](http://arxiv.org/abs/2411.15687)|null|\n", "2412.12102": "|**2024-11-16**|**Distributed Collaborative Inference System in Next-Generation Networks and Communication**|Chuan Zhang et.al.|[2412.12102](http://arxiv.org/abs/2412.12102)|null|\n", "2411.10770": "|**2024-11-16**|**Task Offloading for Vehicular Edge Computing Based on Improved Hotstuff under Parking Assistance**|Guoling Liang et.al.|[2411.10770](http://arxiv.org/abs/2411.10770)|null|\n", "2411.10560": "|**2024-11-15**|**A Combined Environmental Monitoring Framework based on WSN Clustering and VANET Edge Computation Offloading**|Basilis Mamalis et.al.|[2411.10560](http://arxiv.org/abs/2411.10560)|null|\n", "2411.09712": "|**2024-11-12**|**Space-Air-Ground Integrated MEC-Assisted Industrial Cyber-Physical Systems: An Online Decentralized Optimization Approach**|Long He et.al.|[2411.09712](http://arxiv.org/abs/2411.09712)|null|\n", "2411.07485": "|**2024-11-12**|**Decentralized Network Topology Design for Task Offloading in Mobile Edge Computing**|Ke Ma et.al.|[2411.07485](http://arxiv.org/abs/2411.07485)|null|\n", "2411.04762": "|**2024-12-02**|**JC5A: Service Delay Minimization for Aerial MEC-assisted Industrial Cyber-Physical Systems**|Geng Sun et.al.|[2411.04762](http://arxiv.org/abs/2411.04762)|null|\n", "2411.15150": "|**2024-11-07**|**Real-Time Aware IP-Networking for Resource-Constrained Embedded Devices**|Ilja Behnke et.al.|[2411.15150](http://arxiv.org/abs/2411.15150)|null|\n", "2411.00397": "|**2024-12-13**|**Distributed Computation Offloading for Energy Provision Minimization in WP-MEC Networks with Multiple HAPs**|Xiaoying Liu et.al.|[2411.00397](http://arxiv.org/abs/2411.00397)|null|\n", "2411.00859": "|**2024-10-30**|**Profiling AI Models: Towards Efficient Computation Offloading in Heterogeneous Edge AI Systems**|Juan Marcelo Parra-Ullauri et.al.|[2411.00859](http://arxiv.org/abs/2411.00859)|null|\n", "2410.14142": "|**2024-10-21**|**Secure Collaborative Computation Offloading and Resource Allocation in Cache-Assisted Ultra-Dense IoT Networks With Multi-Slope Channels**|Tianqing Zhou et.al.|[2410.14142](http://arxiv.org/abs/2410.14142)|null|\n", "2410.12186": "|**2024-10-16**|**Joint Data Compression, Secure Multi-Part Collaborative Task Offloading and Resource Assignment in Ultra-Dense Networks**|Tianqing Zhou et.al.|[2410.12186](http://arxiv.org/abs/2410.12186)|null|\n", "2410.10071": "|**2024-10-14**|**Content Caching-Assisted Vehicular Edge Computing Using Multi-Agent Graph Attention Reinforcement Learning**|Jinjin Shen et.al.|[2410.10071](http://arxiv.org/abs/2410.10071)|null|\n", "2410.06934": "|**2024-10-09**|**VEC-Sim: A Simulation Platform for Evaluating Service Caching and Computation Offloading Policies in Vehicular Edge Networks**|Fan Wu et.al.|[2410.06934](http://arxiv.org/abs/2410.06934)|null|\n", "2410.06627": "|**2024-10-09**|**Variations in Multi-Agent Actor-Critic Frameworks for Joint Optimizations in UAV Swarm Networks: Recent Evolution, Challenges, and Directions**|Muhammad Morshed Alam et.al.|[2410.06627](http://arxiv.org/abs/2410.06627)|null|\n", "2410.03472": "|**2024-10-08**|**Deep Reinforcement Learning for Delay-Optimized Task Offloading in Vehicular Fog Computing**|Mohammad Parsa Toopchinezhad et.al.|[2410.03472](http://arxiv.org/abs/2410.03472)|**[link](https://github.com/Procedurally-Generated-Human/VFC-Offloading-RL)**|\n", "2409.19869": "|**2024-09-30**|**Edge Intelligence in Satellite-Terrestrial Networks with Hybrid Quantum Computing**|Siyue Huang et.al.|[2409.19869](http://arxiv.org/abs/2409.19869)|null|\n", "2409.18675": "|**2024-09-27**|**Online and Utility-Power Efficient Task Scheduling in Homogeneous Fog Networks**|Fatemeh Ebadi et.al.|[2409.18675](http://arxiv.org/abs/2409.18675)|null|\n", "2409.17882": "|**2024-09-26**|**Multi-UAV Enabled MEC Networks: Optimizing Delay through Intelligent 3D Trajectory Planning and Resource Allocation**|Zhiying Wang et.al.|[2409.17882](http://arxiv.org/abs/2409.17882)|null|\n", "2409.17681": "|**2024-09-26**|**Computation Pre-Offloading for MEC-Enabled Vehicular Networks via Trajectory Prediction**|Ting Zhang et.al.|[2409.17681](http://arxiv.org/abs/2409.17681)|null|\n", "2409.17667": "|**2024-09-26**|**SLO-Aware Task Offloading within Collaborative Vehicle Platoons**|Boris Sedlak et.al.|[2409.17667](http://arxiv.org/abs/2409.17667)|null|\n", "2409.16537": "|**2024-09-25**|**A QoE-Aware Split Inference Accelerating Algorithm for NOMA-based Edge Intelligence**|Xin Yuan et.al.|[2409.16537](http://arxiv.org/abs/2409.16537)|null|\n", "2409.16115": "|**2024-09-24**|**Mean Age of Information in Partial Offloading Mobile Edge Computing Networks**|Ying Dong et.al.|[2409.16115](http://arxiv.org/abs/2409.16115)|null|\n", "2409.14782": "|**2024-09-23**|**Energy-Efficient Multi-UAV-Enabled MEC Systems with Space-Air-Ground Integrated Networks**|Wenchao Liu et.al.|[2409.14782](http://arxiv.org/abs/2409.14782)|null|\n", "2409.10839": "|**2024-09-17**|**Dynamic DAG-Application Scheduling for Multi-Tier Edge Computing in Heterogeneous Networks**|Xiang Li et.al.|[2409.10839](http://arxiv.org/abs/2409.10839)|null|\n", "2409.18977": "|**2024-09-13**|**Dynamic Pricing based Near-Optimal Resource Allocation for Elastic Edge Offloading**|Yun Xia et.al.|[2409.18977](http://arxiv.org/abs/2409.18977)|null|\n", "2409.07911": "|**2024-09-12**|**Tera-SpaceCom: GNN-based Deep Reinforcement Learning for Joint Resource Allocation and Task Offloading in TeraHertz Band Space Networks**|Zhifeng Hu et.al.|[2409.07911](http://arxiv.org/abs/2409.07911)|null|\n", "2409.06078": "|**2024-11-26**|**PEERNet: An End-to-End Profiling Tool for Real-Time Networked Robotic Systems**|Aditya Narayanan et.al.|[2409.06078](http://arxiv.org/abs/2409.06078)|**[link](https://github.com/utaustin-swarmlab/peernet)**|\n", "2409.02548": "|**2024-09-04**|**A Joint Time and Energy-Efficient Federated Learning-based Computation Offloading Method for Mobile Edge Computing**|Anwesha Mukherjee et.al.|[2409.02548](http://arxiv.org/abs/2409.02548)|null|\n", "2409.02518": "|**2024-09-04**|**AirFogSim: A Light-Weight and Modular Simulator for UAV-Integrated Vehicular Fog Computing**|Zhiwei Wei et.al.|[2409.02518](http://arxiv.org/abs/2409.02518)|**[link](https://github.com/zhiweiwei-nami/airfogsim)**|\n", "2408.15481": "|**2024-08-28**|**Joint Offloading and Beamforming Design in Integrating Sensing, Communication, and Computing Systems: A Distributed Approach**|Peng Liu et.al.|[2408.15481](http://arxiv.org/abs/2408.15481)|null|\n", "2408.14831": "|**2024-08-27**|**DRL-Based Federated Self-Supervised Learning for Task Offloading and Resource Allocation in ISAC-Enabled Vehicle Edge Computing**|Xueying Gu et.al.|[2408.14831](http://arxiv.org/abs/2408.14831)|**[link](https://github.com/qiongwu86/federated-ssl-task-offloading-and-resource-allocation)**|\n", "2408.13605": "|**2024-08-24**|**Mobile Edge Computing Networks: Online Low-Latency and Fresh Service Provisioning**|Yuhan Yi et.al.|[2408.13605](http://arxiv.org/abs/2408.13605)|null|\n", "2408.13512": "|**2024-08-24**|**Unleashing Collaborative Computing for Adaptive Video Streaming with Multi-objective Optimization in Satellite Terrestrial Networks**|Zhishu Shen et.al.|[2408.13512](http://arxiv.org/abs/2408.13512)|null|\n", "2408.12860": "|**2024-08-23**|**Active STAR-RIS Empowered Edge System for Enhanced Energy Efficiency and Task Management**|Pyae Sone Aung et.al.|[2408.12860](http://arxiv.org/abs/2408.12860)|null|\n", "2408.05712": "|**2024-08-11**|**DeepAir: A Multi-Agent Deep Reinforcement Learning Based Scheme for an Unknown User Location Problem**|Baris Yamansavascilar et.al.|[2408.05712](http://arxiv.org/abs/2408.05712)|null|\n", "2408.02549": "|**2024-12-19**|**Generative AI as a Service in 6G Edge-Cloud: Generation Task Offloading by In-context Learning**|Hao Zhou et.al.|[2408.02549](http://arxiv.org/abs/2408.02549)|null|\n", "2408.02037": "|**2024-08-04**|**Distributionally Robust Optimization for Computation Offloading in Aerial Access Networks**|Guanwang Jiang et.al.|[2408.02037](http://arxiv.org/abs/2408.02037)|null|\n", "2408.01248": "|**2024-08-02**|**Deep progressive reinforcement learning-based flexible resource scheduling framework for IRS and UAV-assisted MEC system**|Li Dong et.al.|[2408.01248](http://arxiv.org/abs/2408.01248)|null|\n", "2407.21352": "|**2024-07-31**|**Priority and Stackelberg Game-Based Incentive Task Allocation for Device-Assisted MEC Networks**|Yang Li et.al.|[2407.21352](http://arxiv.org/abs/2407.21352)|null|\n", "2407.19657": "|**2024-07-29**|**Sustainable Task Offloading in Secure UAV-assisted Smart Farm Networks: A Multi-Agent DRL with Action Mask Approach**|Tingnan Bao et.al.|[2407.19657](http://arxiv.org/abs/2407.19657)|null|\n", "2407.19121": "|**2024-07-26**|**Task Offloading in Fog Computing with Deep Reinforcement Learning: Future Research Directions Based on Security and Efficiency Enhancements**|Amir Pakmehr et.al.|[2407.19121](http://arxiv.org/abs/2407.19121)|null|\n", "2407.14793": "|**2024-07-20**|**QoS Aware Mixed-Criticality Task Scheduling in Vehicular Edge Cloud System**|Suvarthi Sarkar et.al.|[2407.14793](http://arxiv.org/abs/2407.14793)|null|\n", "2407.11531": "|**2024-07-16**|**Finite State Machines-Based Path-Following Collaborative Computing Strategy for Emergency UAV Swarms**|Jialin Hu et.al.|[2407.11531](http://arxiv.org/abs/2407.11531)|null|\n", "2407.11310": "|**2024-07-16**|**Digital Twin Vehicular Edge Computing Network: Task Offloading and Resource Allocation**|Yu Xie et.al.|[2407.11310](http://arxiv.org/abs/2407.11310)|**[link](https://github.com/qiongwu86/digital-twin-vehicular-edge-computing-network_task-offloading-and-resource-allocation)**|\n", "2407.11155": "|**2025-01-02**|**Joint Optimization of Completion Ratio and Latency of Offloaded Tasks with Multiple Priority Levels in 5G Edge**|Parisa Fard Moshiri et.al.|[2407.11155](http://arxiv.org/abs/2407.11155)|null|\n", "2407.10770": "|**2024-08-02**|**Globally-Constrained Decentralized Optimization with Variable Coupling**|Dandan Wang et.al.|[2407.10770](http://arxiv.org/abs/2407.10770)|null|\n", "2407.05571": "|**2024-07-08**|**Cost-Efficient Computation Offloading in SAGIN: A Deep Reinforcement Learning and Perception-Aided Approach**|Yulan Gao et.al.|[2407.05571](http://arxiv.org/abs/2407.05571)|null|\n", "2407.03804": "|**2024-07-04**|**Multi-Time Scale Service Caching and Pricing in MEC Systems with Dynamic Program Popularity**|Yiming Chen et.al.|[2407.03804](http://arxiv.org/abs/2407.03804)|null|\n", "2407.03280": "|**2024-07-03**|**Cooperative Multi-Agent Deep Reinforcement Learning Methods for UAV-aided Mobile Edge Computing Networks**|Mintae Kim et.al.|[2407.03280](http://arxiv.org/abs/2407.03280)|null|\n", "2407.02342": "|**2024-07-01**|**Optimizing Age of Information in Vehicular Edge Computing with Federated Graph Neural Network Multi-Agent Reinforcement Learning**|Wenhua Wang et.al.|[2407.02342](http://arxiv.org/abs/2407.02342)|**[link](https://github.com/qiongwu86/optimizing-aoi-in-vec-with-federated-graph-neural-network-multi-agent-reinforcement-learning)**|\n", "2407.01086": "|**2024-07-01**|**Terahertz Communication Multi-UAV-Assisted Mobile Edge Computing System**|Heekang Song et.al.|[2407.01086](http://arxiv.org/abs/2407.01086)|null|\n", "2407.00933": "|**2024-07-01**|**Reconfigurable Intelligent Computational Surfaces for MEC-Assisted Autonomous Driving Networks: Design Optimization and Analysis**|Xueyao Zhang et.al.|[2407.00933](http://arxiv.org/abs/2407.00933)|null|\n", "2407.00565": "|**2024-10-08**|**A Multi-Layered Distributed Computing Framework for Enhanced Edge Computing**|Ke Ma et.al.|[2407.00565](http://arxiv.org/abs/2407.00565)|null|\n", "2406.19871": "|**2024-06-28**|**Koopman based trajectory model and computation offloading for high mobility paradigm in ISAC enabled IoT system**|Minh-Tuan Tran et.al.|[2406.19871](http://arxiv.org/abs/2406.19871)|null|\n", "2407.11018": "|**2024-06-28**|**Online Multi-Task Offloading for Semantic-Aware Edge Computing Systems**|Xuyang Chen et.al.|[2407.11018](http://arxiv.org/abs/2407.11018)|null|\n", "2406.19806": "|**2024-06-28**|**Prediction based computation offloading and resource allocation for multi-access ISAC enabled IoT system**|Duc-Thuan Le et.al.|[2406.19806](http://arxiv.org/abs/2406.19806)|null|\n", "2406.18117": "|**2024-06-26**|**Resilient and Secure Programmable System-on-Chip Accelerator Offload**|In\u00eas Pinto Gouveia et.al.|[2406.18117](http://arxiv.org/abs/2406.18117)|null|\n", "2407.12011": "|**2024-06-24**|**Digital Twinning of a Pressurized Water Reactor Startup Operation and Partial Computational Offloading in In-network Computing-Assisted Multiaccess Edge Computing**|Ibrahim Aliyu et.al.|[2407.12011](http://arxiv.org/abs/2407.12011)|null|\n", "2407.00080": "|**2024-06-24**|**Decentralized Task Offloading and Load-Balancing for Mobile Edge Computing in Dense Networks**|Mariam Yahya et.al.|[2407.00080](http://arxiv.org/abs/2407.00080)|null|\n", "2406.11318": "|**2024-06-17**|**Reconfigurable Intelligent Surface Assisted VEC Based on Multi-Agent Reinforcement Learning**|Kangwei Qi et.al.|[2406.11318](http://arxiv.org/abs/2406.11318)|**[link](https://github.com/qiongwu86/ris-vec-marl)**|\n", "2406.11918": "|**2024-06-17**|**QoE Maximization for Multiple-UAV-Assisted Multi-Access Edge Computing: An Online Joint Optimization Approach**|Long He et.al.|[2406.11918](http://arxiv.org/abs/2406.11918)|null|\n", "2406.10895": "|**2024-08-02**|**Fair Computation Offloading for RSMA-Assisted Mobile Edge Computing Networks**|Ding Xu et.al.|[2406.10895](http://arxiv.org/abs/2406.10895)|null|\n", "2406.07087": "|**2024-06-11**|**Edge Rendering Architecture for multiuser XR Experiences and E2E Performance Assessment**|Inhar Yeregui et.al.|[2406.07087](http://arxiv.org/abs/2406.07087)|null|\n", "2406.06986": "|**2024-06-11**|**DNN Partitioning, Task Offloading, and Resource Allocation in Dynamic Vehicular Networks: A Lyapunov-Guided Diffusion-Based Reinforcement Learning Approach**|Zhang Liu et.al.|[2406.06986](http://arxiv.org/abs/2406.06986)|null|\n", "2406.05422": "|**2024-06-08**|**Diffusion-based Reinforcement Learning for Dynamic UAV-assisted Vehicle Twins Migration in Vehicular Metaverses**|Yongju Tong et.al.|[2406.05422](http://arxiv.org/abs/2406.05422)|null|\n", "2405.20587": "|**2024-05-31**|**Quality-Aware Task Offloading for Cooperative Perception in Vehicular Edge Computing**|Amr M. Zaki et.al.|[2405.20587](http://arxiv.org/abs/2405.20587)|null|\n", "2405.18739": "|**2024-05-29**|**FlocOff: Data Heterogeneity Resilient Federated Learning with Communication-Efficient Edge Offloading**|Mulei Ma et.al.|[2405.18739](http://arxiv.org/abs/2405.18739)|null|\n", "2405.16078": "|**2024-06-26**|**An Multi-resources Integration Empowered Task Offloading in Internet of Vehicles: From the Perspective of Wireless Interference**|Xiaowu Liu et.al.|[2405.16078](http://arxiv.org/abs/2405.16078)|null|\n", "2405.16060": "|**2024-05-25**|**Delay-Effective Task Offloading Technology in Internet of Vehicles: From the Perspective of the Vehicle Platooning**|Kan Yu et.al.|[2405.16060](http://arxiv.org/abs/2405.16060)|null|\n", "2405.11352": "|**2024-05-18**|**Hierarchical Reinforcement Learning Empowered Task Offloading in V2I Networks**|Xinyu You et.al.|[2405.11352](http://arxiv.org/abs/2405.11352)|null|\n", "2405.06507": "|**2024-05-10**|**EcoEdgeTwin: Enhanced 6G Network via Mobile Edge Computing and Digital Twin Integration**|Synthia Hossain Karobi et.al.|[2405.06507](http://arxiv.org/abs/2405.06507)|null|\n", "2405.06297": "|**2024-05-10**|**Joint Uplink and Downlink Rate Splitting for Fog Computing-Enabled Internet of Medical Things**|Jiasi Zhou et.al.|[2405.06297](http://arxiv.org/abs/2405.06297)|null|\n", "2405.03181": "|**2024-05-20**|**Collaborative Satellite Computing through Adaptive DNN Task Splitting and Offloading**|Shifeng Peng et.al.|[2405.03181](http://arxiv.org/abs/2405.03181)|null|\n", "2405.02972": "|**2024-05-05**|**Multi-Agent RL-Based Industrial AIGC Service Offloading over Wireless Edge Networks**|Siyuan Li et.al.|[2405.02972](http://arxiv.org/abs/2405.02972)|null|\n", "2405.02682": "|**2024-05-04**|**Deduplicator: When Computation Reuse Meets Load Balancing at the Network Edge**|Md Washik Al Azad et.al.|[2405.02682](http://arxiv.org/abs/2405.02682)|**[link](https://github.com/malazad/deduplicator)**|\n", "2404.18406": "|**2024-04-29**|**Movable Antenna-Enhanced Wireless Powered Mobile Edge Computing Systems**|Pengcheng Chen et.al.|[2404.18406](http://arxiv.org/abs/2404.18406)|null|\n", "2404.12584": "|**2024-04-19**|**Multi-Objective Offloading Optimization in MEC and Vehicular-Fog Systems: A Distributed-TD3 Approach**|Frezer Guteta Wakgra et.al.|[2404.12584](http://arxiv.org/abs/2404.12584)|null|\n", "2404.09477": "|**2024-04-15**|**Servers Placement Scheme Based on All-pay Auction Framework in Mobile Edge Computing**|Yun Xia et.al.|[2404.09477](http://arxiv.org/abs/2404.09477)|null|\n", "2404.09285": "|**2024-04-30**|**Egret: Reinforcement Mechanism for Sequential Computation Offloading in Edge Computing**|Haosong Peng et.al.|[2404.09285](http://arxiv.org/abs/2404.09285)|null|\n", "2404.08396": "|**2024-04-12**|**Joint Computation Offloading and Target Tracking in Integrated Sensing and Communication Enabled UAV Networks**|Trinh Van Chien et.al.|[2404.08396](http://arxiv.org/abs/2404.08396)|null|\n", "2407.01540": "|**2024-04-08**|**Towards a Partial Computation offloading in In-networking Computing-Assisted MEC: A Digital Twin Approach**|Ibrahim Aliyu et.al.|[2407.01540](http://arxiv.org/abs/2407.01540)|null|\n", "2501.04267": "|**2025-01-08**|**A 5G-Edge Architecture for Computational Offloading of Computer Vision Applications**|Marcelo V. B. da Silva et.al.|[2501.04267](http://arxiv.org/abs/2501.04267)|null|\n", "2501.04496": "|**2025-01-05**|**Towards Beyond Communications 6G Networks Status and Challenges**|Vasileios Tsekenis et.al.|[2501.04496](http://arxiv.org/abs/2501.04496)|null|\n", "2501.06410": "|**2025-01-11**|**Task Delay and Energy Consumption Minimization for Low-altitude MEC via Evolutionary Multi-objective Deep Reinforcement Learning**|Geng Sun et.al.|[2501.06410](http://arxiv.org/abs/2501.06410)|null|\n", "2501.05660": "|**2025-01-10**|**Fully Decentralized Computation Offloading in Priority-Driven Edge Computing Systems**|Shubham Aggarwal et.al.|[2501.05660](http://arxiv.org/abs/2501.05660)|null|\n", "2501.06242": "|**2025-01-08**|**Intelligent Task Offloading: Advanced MEC Task Offloading and Resource Management in 5G Networks**|Alireza Ebrahimi et.al.|[2501.06242](http://arxiv.org/abs/2501.06242)|null|\n", "2501.06194": "|**2024-12-24**|**Energy Efficient Computation Offloading and Virtual Connection Control in Uplink Small Cell Networks**|Davoud Yousefi et.al.|[2501.06194](http://arxiv.org/abs/2501.06194)|null|\n", "2501.07585": "|**2025-01-02**|**Multi-task Domain Adaptation for Computation Offloading in Edge-intelligence Networks**|Runxin Han et.al.|[2501.07585](http://arxiv.org/abs/2501.07585)|null|\n", "2501.11557": "|**2025-01-20**|**Secure Resource Allocation via Constrained Deep Reinforcement Learning**|Jianfei Sun et.al.|[2501.11557](http://arxiv.org/abs/2501.11557)|null|\n", "2501.11333": "|**2025-01-20**|**A Dynamic Improvement Framework for Vehicular Task Offloading**|Qianren Li et.al.|[2501.11333](http://arxiv.org/abs/2501.11333)|null|\n", "2501.13227": "|**2025-01-22**|**Joint Task Offloading and User Scheduling in 5G MEC under Jamming Attacks**|Mohammadreza Amini et.al.|[2501.13227](http://arxiv.org/abs/2501.13227)|null|\n", "2501.15577": "|**2025-01-26**|**Vehicular Multi-Tier Distributed Computing with Hybrid THz-RF Transmission in Satellite-Terrestrial Integrated Networks**|Ni Zhang et.al.|[2501.15577](http://arxiv.org/abs/2501.15577)|null|\n", "2501.15305": "|**2025-01-25**|**Enhancing Disaster Resilience with UAV-Assisted Edge Computing: A Reinforcement Learning Approach to Managing Heterogeneous Edge Devices**|Talha Azfar et.al.|[2501.15305](http://arxiv.org/abs/2501.15305)|null|\n", "2501.15203": "|**2025-01-25**|**Reinforcement Learning Controlled Adaptive PSO for Task Offloading in IIoT Edge Computing**|Minod Perera et.al.|[2501.15203](http://arxiv.org/abs/2501.15203)|**[link](https://github.com/MinodRashmika/APSO_SAC_IIOT)**|\n", "2501.15164": "|**2025-01-31**|**UAV-Assisted MEC Architecture for Collaborative Task Offloading in Urban IoT Environment**|Subhrajit Barick et.al.|[2501.15164](http://arxiv.org/abs/2501.15164)|null|\n", "2501.14205": "|**2025-01-24**|**Serving Long-Context LLMs at the Mobile Edge: Test-Time Reinforcement Learning-based Model Caching and Inference Offloading**|Minrui Xu et.al.|[2501.14205](http://arxiv.org/abs/2501.14205)|null|\n", "2501.17014": "|**2025-01-28**|**Network Slice-based Low-Altitude Intelligent Network for Advanced Air Mobility**|Kai Xiong et.al.|[2501.17014](http://arxiv.org/abs/2501.17014)|null|\n", "2501.18718": "|**2025-01-30**|**Distributed Offloading in Multi-Access Edge Computing Systems: A Mean-Field Perspective**|Shubham Aggarwal et.al.|[2501.18718](http://arxiv.org/abs/2501.18718)|null|\n", "2502.03403": "|**2025-02-05**|**Lightweight Authenticated Task Offloading in 6G-Cloud Vehicular Twin Networks**|Sarah Al-Shareeda et.al.|[2502.03403](http://arxiv.org/abs/2502.03403)|null|\n", "2502.02886": "|**2025-02-06**|**Advancements in Mobile Edge Computing and Open RAN: Leveraging Artificial Intelligence and Machine Learning for Wireless Systems**|Ryan Barker et.al.|[2502.02886](http://arxiv.org/abs/2502.02886)|null|\n", "2502.04827": "|**2025-02-07**|**Uplink Rate-Splitting Multiple Access for Mobile Edge Computing with Short-Packet Communications**|Jiawei Xu et.al.|[2502.04827](http://arxiv.org/abs/2502.04827)|null|\n", "2502.06963": "|**2025-02-10**|**Task Offloading in Vehicular Edge Computing using Deep Reinforcement Learning: A Survey**|Ashab Uddin et.al.|[2502.06963](http://arxiv.org/abs/2502.06963)|null|\n", "2502.06581": "|**2025-02-27**|**A Survey on Video Analytics in Cloud-Edge-Terminal Collaborative Systems**|Linxiao Gong et.al.|[2502.06581](http://arxiv.org/abs/2502.06581)|null|\n", "2502.08119": "|**2025-02-12**|**Generative AI-Enhanced Cooperative MEC of UAVs and Ground Stations for Unmanned Surface Vehicles**|Jiahao You et.al.|[2502.08119](http://arxiv.org/abs/2502.08119)|null|\n", "2502.10149": "|**2025-02-14**|**IRS-assisted Edge Computing for Vehicular Networks: A Generative Diffusion Model-based Stackelberg Game Approach**|Yixian Wang et.al.|[2502.10149](http://arxiv.org/abs/2502.10149)|null|\n", "2502.12875": "|**2025-02-18**|**A Survey on DRL based UAV Communications and Networking: DRL Fundamentals, Applications and Implementations**|Wei Zhao et.al.|[2502.12875](http://arxiv.org/abs/2502.12875)|null|\n", "2502.16495": "|**2025-02-27**|**Orchestrating Joint Offloading and Scheduling for Low-Latency Edge SLAM**|Yao Zhang et.al.|[2502.16495](http://arxiv.org/abs/2502.16495)|null|\n", "2502.15903": "|**2025-02-21**|**Computation Offloading Strategies in Integrated Terrestrial and Non-Terrestrial Networks**|Muhammad Ahmed Mohsin et.al.|[2502.15903](http://arxiv.org/abs/2502.15903)|null|\n", "2503.03391": "|**2025-03-05**|**Multi-Agent DRL for Queue-Aware Task Offloading in Hierarchical MEC-Enabled Air-Ground Networks**|Muhammet Hevesli et.al.|[2503.03391](http://arxiv.org/abs/2503.03391)|null|\n", "2503.04397": "|**2025-03-06**|**Energy-Aware Task Offloading for Rotatable STAR-RIS-Enhanced Mobile Edge Computing Systems**|Dongdong Yang et.al.|[2503.04397](http://arxiv.org/abs/2503.04397)|null|\n", "2503.08001": "|**2025-03-11**|**Joint Semantic Transmission and Resource Allocation for Intelligent Computation Task Offloading in MEC Systems**|Yuanpeng Zheng et.al.|[2503.08001](http://arxiv.org/abs/2503.08001)|null|\n", "2503.16879": "|**2025-03-21**|**Rotatable RIS-Assisted Edge Computing: Orientation, Task Offloading, and Resource Optimization**|Bin Li et.al.|[2503.16879](http://arxiv.org/abs/2503.16879)|null|\n", "2503.19320": "|**2025-03-25**|**A Reliable and Efficient 5G Vehicular MEC: Guaranteed Task Completion with Minimal Latency**|Mahsa Paknejad et.al.|[2503.19320](http://arxiv.org/abs/2503.19320)|null|\n", "2503.19319": "|**2025-03-25**|**Partitioned Task Offloading for Low-Latency and Reliable Task Completion in 5G MEC**|Parisa Fard Moshiri et.al.|[2503.19319](http://arxiv.org/abs/2503.19319)|null|\n", "2503.20256": "|**2025-03-26**|**Sequential Task Assignment and Resource Allocation in V2X-Enabled Mobile Edge Computing**|Yufei Ye et.al.|[2503.20256](http://arxiv.org/abs/2503.20256)|null|\n", "2504.00453": "|**2025-04-01**|**Efficient and Sustainable Task Offloading in UAV-Assisted MEC Systems via Meta Deep Reinforcement Learning**|Maryam Farajzadeh Dehkordi et.al.|[2504.00453](http://arxiv.org/abs/2504.00453)|null|\n", "2504.07119": "|**2025-03-26**|**UAV-Assisted MEC for Disaster Response: Stackelberg Game-Based Resource Optimization**|Yafei Guo et.al.|[2504.07119](http://arxiv.org/abs/2504.07119)|null|\n", "2504.08134": "|**2025-04-10**|**Hybrid Reinforcement Learning-based Sustainable Multi-User Computation Offloading for Mobile Edge-Quantum Computing**|Minrui Xu et.al.|[2504.08134](http://arxiv.org/abs/2504.08134)|null|\n", "2504.09437": "|**2025-04-13**|**PLS-Assisted Offloading for Edge Computing-Enabled Post-Quantum Security in Resource-Constrained Devices**|Hamid Amiriara et.al.|[2504.09437](http://arxiv.org/abs/2504.09437)|null|\n", "2504.15162": "|**2025-04-21**|**To Offload or Not To Offload: Model-driven Comparison of Edge-native and On-device Processing**|Nathan Ng et.al.|[2504.15162](http://arxiv.org/abs/2504.15162)|null|\n", "2504.13554": "|**2025-04-18**|**Task Assignment and Exploration Optimization for Low Altitude UAV Rescue via Generative AI Enhanced Multi-agent Reinforcement Learning**|Xin Tang et.al.|[2504.13554](http://arxiv.org/abs/2504.13554)|null|\n", "2504.16792": "|**2025-04-23**|**Preemption Aware Task Scheduling for Priority and Deadline Constrained DNN Inference Task Offloading in Homogeneous Mobile-Edge Networks**|Jamie Cotter et.al.|[2504.16792](http://arxiv.org/abs/2504.16792)|null|\n", "2504.16729": "|**2025-04-23**|**MEC Task Offloading in AIoT: A User-Centric DRL Model Splitting Inference Scheme**|Weixi Li et.al.|[2504.16729](http://arxiv.org/abs/2504.16729)|null|\n", "2504.17526": "|**2025-04-24**|**Cooperative Task Offloading through Asynchronous Deep Reinforcement Learning in Mobile Edge Computing for Future Networks**|Yuelin Liu et.al.|[2504.17526](http://arxiv.org/abs/2504.17526)|null|\n", "2504.18031": "|**2025-04-25**|**Joint Resource Estimation and Trajectory Optimization for eVTOL-involved CR network: A Monte Carlo Tree Search-based Approach**|Kai Xiong et.al.|[2504.18031](http://arxiv.org/abs/2504.18031)|null|\n", "2504.20735": "|**2025-04-29**|**Intelligent Task Offloading in VANETs: A Hybrid AI-Driven Approach for Low-Latency and Energy Efficiency**|Tariq Qayyum et.al.|[2504.20735](http://arxiv.org/abs/2504.20735)|null|\n", "2505.00848": "|**2025-05-01**|**SeLR: Sparsity-enhanced Lagrangian Relaxation for Computation Offloading at the Edge**|Negar Erfaniantaghvayi et.al.|[2505.00848](http://arxiv.org/abs/2505.00848)|**[link](https://github.com/Negar-Erfanian/SeLR)**|\n", "2505.04272": "|**2025-05-07**|**Joint Task Offloading and Channel Allocation in Spatial-Temporal Dynamic for MEC Networks**|Tianyi Shi et.al.|[2505.04272](http://arxiv.org/abs/2505.04272)|null|\n", "2505.06678": "|**2025-05-10**|**Distributionally Robust Contract Theory for Edge AIGC Services in Teleoperation**|Zijun Zhan et.al.|[2505.06678](http://arxiv.org/abs/2505.06678)|**[link](https://github.com/zijun0819/dro-contract-theory)**|\n", "2505.13331": "|**2025-05-19**|**Learning Driven Elastic Task Multi-Connectivity Immersive Computing Systems**|Babak Badnava et.al.|[2505.13331](http://arxiv.org/abs/2505.13331)|null|\n", "2505.10815": "|**2025-05-16**|**Enhancing Secrecy Energy Efficiency in RIS-Aided Aerial Mobile Edge Computing Networks: A Deep Reinforcement Learning Approach**|Aly Sabri Abdalla et.al.|[2505.10815](http://arxiv.org/abs/2505.10815)|null|\n", "2505.22149": "|**2025-05-28**|**Real-World Modeling of Computation Offloading for Neural Networks with Early Exits and Splits**|Jan Danek et.al.|[2505.22149](http://arxiv.org/abs/2505.22149)|null|\n", "2506.02668": "|**2025-06-03**|**FAuNO: Semi-Asynchronous Federated Reinforcement Learning Framework for Task Offloading in Edge Systems**|Frederico Metelo et.al.|[2506.02668](http://arxiv.org/abs/2506.02668)|null|\n", "2506.02458": "|**2025-06-03**|**A Novel Deep Reinforcement Learning Method for Computation Offloading in Multi-User Mobile Edge Computing with Decentralization**|Nguyen Chi Long et.al.|[2506.02458](http://arxiv.org/abs/2506.02458)|null|\n", "2506.02233": "|**2025-06-02**|**Improving compiler support for SIMD offload using Arm Streaming SVE**|Mohamed Husain Noor Mohamed et.al.|[2506.02233](http://arxiv.org/abs/2506.02233)|null|\n", "2506.04456": "|**2025-06-04**|**Knowledge-Guided Attention-Inspired Learning for Task Offloading in Vehicle Edge Computing**|Ke Ma et.al.|[2506.04456](http://arxiv.org/abs/2506.04456)|null|\n", "2506.07598": "|**2025-06-18**|**Computation Capacity Maximization for Pinching Antennas-Assisted Wireless Powered MEC Systems**|Peng Liu et.al.|[2506.07598](http://arxiv.org/abs/2506.07598)|null|\n", "2506.09180": "|**2025-06-10**|**Optimal Task Offloading with Firm Deadlines for Mobile Edge Computing Systems**|Khai Doan et.al.|[2506.09180](http://arxiv.org/abs/2506.09180)|null|\n", "2506.13626": "|**2025-06-16**|**Delay-optimal Congestion-aware Routing and Computation Offloading in Arbitrary Network**|Jinkun Zhang et.al.|[2506.13626](http://arxiv.org/abs/2506.13626)|null|\n", "2506.12195": "|**2025-06-13**|**OSI Stack Redesign for Quantum Networks: Requirements, Technologies, Challenges, and Future Directions**|Shakil Ahmed et.al.|[2506.12195](http://arxiv.org/abs/2506.12195)|null|\n", "2506.15225": "|**2025-06-18**|**Joint Computation Offloading and Resource Allocation for Uncertain Maritime MEC via Cooperation of UAVs and Vessels**|Jiahao You et.al.|[2506.15225](http://arxiv.org/abs/2506.15225)|null|\n", "2506.21933": "|**2025-06-27**|**Joint Task Offloading and Resource Allocation in Low-Altitude MEC via Graph Attention Diffusion**|Yifan Xue et.al.|[2506.21933](http://arxiv.org/abs/2506.21933)|null|\n", "2506.22474": "|**2025-06-20**|**RL-based Adaptive Task Offloading in Mobile-Edge Computing for Future IoT Networks**|Ziad Qais Al Abbasi et.al.|[2506.22474](http://arxiv.org/abs/2506.22474)|null|\n", "2507.00710": "|**2025-07-01**|**Robust Task Offloading for UAV-enabled Secure MEC Against Aerial Eavesdropper**|Can Cui et.al.|[2507.00710](http://arxiv.org/abs/2507.00710)|null|\n", "2507.05722": "|**2025-07-08**|**Hierarchical Task Offloading for UAV-Assisted Vehicular Edge Computing via Deep Reinforcement Learning**|Hongbao Li et.al.|[2507.05722](http://arxiv.org/abs/2507.05722)|null|\n", "2507.09352": "|**2025-07-12**|**Reliable Task Offloading in MEC through Transmission Diversity and Jamming-Aware Scheduling**|Ghazal Asemian et.al.|[2507.09352](http://arxiv.org/abs/2507.09352)|null|\n", "2507.09346": "|**2025-07-12**|**Fast and Adaptive Task Management in MEC: A Deep Learning Approach Using Pointer Networks**|Arild Yonkeu et.al.|[2507.09346](http://arxiv.org/abs/2507.09346)|null|\n", "2507.09341": "|**2025-07-12**|**Meeting Deadlines in Motion: Deep RL for Real-Time Task Offloading in Vehicular Edge Networks**|Mahsa Paknejad et.al.|[2507.09341](http://arxiv.org/abs/2507.09341)|null|\n", "2507.13242": "|**2025-07-17**|**QTCAJOSA: Low-Complexity Joint Offloading and Subchannel Allocation for NTN-Enabled IoMT**|Alejandro Flores C. et.al.|[2507.13242](http://arxiv.org/abs/2507.13242)|null|\n", "2507.12910": "|**2025-07-17**|**Energy-Efficient RSMA-enabled Low-altitude MEC Optimization Via Generative AI-enhanced Deep Reinforcement Learning**|Xudong Wang et.al.|[2507.12910](http://arxiv.org/abs/2507.12910)|null|\n", "2507.12028": "|**2025-07-16**|**MOFCO: Mobility- and Migration-Aware Task Offloading in Three-Layer Fog Computing Environments**|Soheil Mahdizadeh et.al.|[2507.12028](http://arxiv.org/abs/2507.12028)|null|\n", "2507.11560": "|**2025-07-14**|**A Model Aware AIGC Task Offloading Algorithm in IIoT Edge Computing**|Xin Wang et.al.|[2507.11560](http://arxiv.org/abs/2507.11560)|null|\n", "2507.15670": "|**2025-07-21**|**Vehicular Cloud Computing: A cost-effective alternative to Edge Computing in 5G networks**|Rosario Patan\u00e8 et.al.|[2507.15670](http://arxiv.org/abs/2507.15670)|null|\n"}} --------------------------------------------------------------------------------