Changes between Version 2 and Version 3 of AdvancedTopics
- Timestamp:
- 06/15/26 00:15:04 (22 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdvancedTopics
v2 v3 235 235 With this we keep the worker's profile up to date with the worker's completed tasks. 236 236 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.237 For this approach to work, every new task request submitted by a client must be embedded before it can participate in the recommendation process. 238 238 239 239 == 2. Category Based Recommendation == … … 243 243 For 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. 244 244 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.245 Similarly, new worker category descriptions must also be embedded before they can be used for category-based recommendations. 246 246 247 247 For saving the results from the scripts and for faster search we use these tables and indexes: … … 280 280 }}} 281 281 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.
