-i https://pypi.tuna.tsinghua.edu.cn/simple This document describes the code implementation of the center. The main steps include:
- Establish the connection between edge nodes and the center, register all edge nodes and keep the connection alive throughout the process.
- Retrieve input data from the local environment and generate inputs for each round.
- Perform 20 task offloading rounds before the model offloading round.
- After the algorithm finishes, match the target edge ID with task offloading decisions and model caching decisions.
- Call the transmission function to distribute specific tasks to the edge nodes.
- Call the function for model transmission.
- Once the model deployment is ready, prepare for the next round.
(maintainer: @wxhfj)
- task_id : The primary key.
- task_type :
- 0 TC (Text Classification)
- reference_enum :
- 0: sad
- 1: happy
- 2: love
- 3: angry
- 4: scared
- 5: surprise
- 1 NER (Named Entity Recognition)
- reference_enum :
- O: None
- B-
<ENTITY>: Beginning part of certain words - I-
<ENTITY>: Internal part of certain words - Entity : PER (Person Name), LOC (Location), ORG (Organization), MISC (Miscellaneous)
- 2 QA (Question Answering)
- reference_value : ideal standard answer
- 3 TS (Translation Chinese to English)
- reference_value : ideal standard answer
- 4 SG (Summarization Generation)
- reference_value : ideal standard answer
- task_token : Query words.
- perplexity comparison :
- load time comparision :
2025/05/14 updates: add flask UI monitoring







