This model is a fine-tuned version of
deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B on the None dataset.
It achieves the following results on the evaluation set:
This model can be used for various natural language processing tasks. However, it may have limitations based on the dataset and fine-tuning constraints.
1git clone https://github.com/ggerganov/llama.cpp.git
2cd llama.cpp
3make -j
4./main -m first.gguf -p "Hello, how are you?"
1from ctransformers import AutoModelForCausalLM
2
3model = AutoModelForCausalLM.from_pretrained(
4 "your_username/your_model_repo",
5 model_file="first.gguf",
6 model_type="llama"
7)
8
9output = model("Hello, how are you?")
10print(output)