Its a finetuned DeepSeekR1 Model which asks user doubts to ambigous questions, and proceeds with its further reasoning steps. Just like token in reasoning models, here , tokens are used to ask user doubts. This can be used in any reasoning model to improve its accuracy as it reduces the ambiguity in the task assigned to the model and also I think this might reduce the compounding error in reasoning models.
supporting research paper: https://arxiv.org/html/2507.14406v1 Paper Name: Fail Fast or Ask Mitigating the Deficiencies of Reasoning LLMs with Human-in-the-Loop Systems Engineering
- Model Name: Human_in_the_Loop_Reasoning
- Base Model: DeepSeekR1
- Fine-tuning Method: LoRA
- Dataset: Self created dataset with 5000 samples
- License: MIT License
- Model Weights: Hugging Face Link
- Training Code: GitHub Repository
- Intended Use Cases: Enhancing reasoning tasks by incorporating user feedback to resolve ambiguities.
- Limitations: May require user interaction which could slow down the reasoning process. Performance is dependent on the quality of user input.
- Ethical Considerations: Ensure user data privacy and avoid over-reliance on user input for critical decisions.
- Citation: Please cite the GitHub repository if you use this model in your work.
python
import ollama
response = ollama.chat(model="deepseek_finetuned_model",
messages=[{ "role": "user", "content": "I wanna plan an Industrial Visit with as a part of our engineering college"
},
])
print(response.message.content)
Okay, to plan a successful industrial visit, I need some details. <question>What industry are you interested in? For example, IT, Automobile, Robotics, etc.</question>
(User responds: Robotics)
<ask>What is the budget for this visit? Including travel expenses, entrance fees and other costs?</ask>
(User responds: 20000 INR)
I also need an idea of where to visit.
<ask>Which companies do you want to visit that are in the robotics space? Are they nearby or do you need to travel far? </ask>
(User responds: Boston Robotics Inc. is located in Bangalore and it's within my budget.)
Okay, planning a visit to Boston Robotics Inc., Bangalore. I will focus on the cost and schedule.
Final Answer: Plan an industrial visit to Boston Robotics Inc, Bangalore with a budget of 20,000 INR, focusing on robotics.
