Changes between Version 2 and Version 3 of AdvancedTopics


Ignore:
Timestamp:
06/15/26 00:15:04 (22 hours ago)
Author:
231141
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdvancedTopics

    v2 v3  
    235235With this we keep the worker's profile up to date with the worker's completed tasks.
    236236
    237 For this to work we will have to embed every new task request that the client registers, and we will do this with a background job.
     237For this approach to work, every new task request submitted by a client must be embedded before it can participate in the recommendation process.
    238238
    239239== 2. Category Based Recommendation ==
     
    243243For this purpose we embed the `worker_category` experience description and we get one embedding per category per worker. We do this in the script [attachment:embed_worker_category_description.py]. We also embed the task requests with their description with the script [attachment:embed_task_requests_description.py] and do the matching this way. We do this in the `ELSE` block of the `recommend_task_requests_for_worker` function.
    244244
    245 We will also have to run the scripts that embed the task request descriptions and the `worker_category` experience descriptions. We will also do this with a background job.
     245Similarly, new worker category descriptions must also be embedded before they can be used for category-based recommendations.
    246246
    247247For saving the results from the scripts and for faster search we use these tables and indexes:
     
    280280}}}
    281281
    282 For new task requests and worker category records we will use the same scripts and run them as a background job every 5 minutes.