[Heart Ruler] 2024-18 Weekly Report
Time: @2024/05/05~@2024/05/11 It's time to submit the weekly report again, and I found I really didn't do much) This week I'm still copying and pasting PPT... This week I've been working on large language models and their data preparation, but it laid the foundation for the scale preparation. Continue to work hard next week! Large Language Model Completed Privately deployed embedding and chat, based on Ollama. Functionally, it can run entirely locally and is currently used as a fallback solution. Optimized the calling structure, making model calls modular and priority layering more flexible. Added DeepSeek, a cheaper and better model. Risk synchronization Through o
Time: @2024/05/05~@2024/05/11
It's time to submit the weekly report again, and I found I really didn't do much) This week I'm still copying and pasting PPT... This week I've been working on large language models and their data preparation, but it laid the foundation for the scale preparation. Continue to work hard next week!
Large Language Model
Completed
- Privately deployed embedding and chat, based on Ollama. Functionally, it can run entirely locally and is currently used as a fallback solution.
- Optimized the calling structure, making model calls modular and priority layering more flexible.
- Added DeepSeek, a cheaper and better model
Risk synchronization
- A bug occurred with embedding through oneapid. Now using a local embedding model instead to build the "Sword in the Stone" knowledge base.
Content
Completed
- Deployed RSS psychology subscription, created a psychology knowledge acquisition stream.
In progress
- Obtained a batch of new scales, currently organizing them
Website
Planned tasks
- Conceived optimizing scale import JSON, not yet implemented. The purpose is to simplify the scale construction process and remove redundant option content.
Currently conceived using the Adult ADHD Self-Report Scale as an example:
{
"name":"Adult ADHD Self-Report Scale (6 items)",
"introduction":1,
"item":{
"asrs1": "When the most challenging part of a task is done, do you often have difficulty finishing the details?",
"asrs2": "Do you often have difficulty getting organized for tasks or activities? ",
"asrs3": "When you have a task that requires a lot of mental effort, do you often avoid or delay starting it?",
"asrs4": "Do you often have difficulty remembering appointments or obligations?",
"asrs5": "When you have to sit still for a long time, do you often fidget or squirm with your hands or feet?",
"asrs6": "Do you feel overly active and compelled to do things, as if driven by a motor?"
},
"value": {
"Never":0,
"Rarely":1,
"Sometimes":2,
"Often":3,
"Always":4
},
"result":[
{
"name": "ADHD",
"sum": [
"asrs1",
"asrs2",
"asrs3",
"asrs4",
"asrs5",
"asrs6",
],
"re_sum": [],
"result": {
"0": 2
}
}
]
}
Comments
0No comments yet.