Text Generation
Transformers
Safetensors
Turkish
English
mistral
turkish
general tasks
RAG
SFT
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use cypienai/cymist-2-v02-SFT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cypienai/cymist-2-v02-SFT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cypienai/cymist-2-v02-SFT") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("cypienai/cymist-2-v02-SFT") model = AutoModelForMultimodalLM.from_pretrained("cypienai/cymist-2-v02-SFT") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Local Apps Settings
- vLLM
How to use cypienai/cymist-2-v02-SFT with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cypienai/cymist-2-v02-SFT" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cypienai/cymist-2-v02-SFT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cypienai/cymist-2-v02-SFT
- SGLang
How to use cypienai/cymist-2-v02-SFT with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "cypienai/cymist-2-v02-SFT" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cypienai/cymist-2-v02-SFT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "cypienai/cymist-2-v02-SFT" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cypienai/cymist-2-v02-SFT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cypienai/cymist-2-v02-SFT with Docker Model Runner:
docker model run hf.co/cypienai/cymist-2-v02-SFT
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,31 +11,32 @@ language:
|
|
| 11 |
- en
|
| 12 |
pipeline_tag: text2text-generation
|
| 13 |
base_model: mistralai/Mistral-7B-v0.1
|
| 14 |
-
|
| 15 |
model-index:
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
|
|
|
|
|
|
| 39 |
---
|
| 40 |
# Model Card for Cymist2-v0.2-SFT
|
| 41 |
### Model Description
|
|
@@ -140,4 +141,4 @@ For more information or inquiries about the model, please contact the Cypien AI
|
|
| 140 |
|
| 141 |
info@cypien.ai
|
| 142 |
|
| 143 |
-
CypienAI team
|
|
|
|
| 11 |
- en
|
| 12 |
pipeline_tag: text2text-generation
|
| 13 |
base_model: mistralai/Mistral-7B-v0.1
|
|
|
|
| 14 |
model-index:
|
| 15 |
+
- name: cymist-2-v03-SFT
|
| 16 |
+
results:
|
| 17 |
+
- task:
|
| 18 |
+
type: text-generation
|
| 19 |
+
metrics:
|
| 20 |
+
- name: ARC (25-Shot)
|
| 21 |
+
type: arc_challenge (25-Shot)
|
| 22 |
+
value: 60.07
|
| 23 |
+
- name: Hellaswag (10-Shot)
|
| 24 |
+
type: Hellaswag (10-Shot)
|
| 25 |
+
value: 83.43
|
| 26 |
+
- name: TruthfulQA
|
| 27 |
+
type: TruthfulQA
|
| 28 |
+
value: 52.06
|
| 29 |
+
- name: GSM8K (5-Shot)
|
| 30 |
+
type: GSM8K (5-Shot)
|
| 31 |
+
value: 38.97
|
| 32 |
+
- name: Winogrande (5-Shot)
|
| 33 |
+
type: Winogrande (5-Shot)
|
| 34 |
+
value: 78.61
|
| 35 |
+
- name: MMLU (5-Shot)
|
| 36 |
+
type: MMLU (5-Shot)
|
| 37 |
+
value: 60.07
|
| 38 |
+
datasets:
|
| 39 |
+
- open-llm-leaderboard/results
|
| 40 |
---
|
| 41 |
# Model Card for Cymist2-v0.2-SFT
|
| 42 |
### Model Description
|
|
|
|
| 141 |
|
| 142 |
info@cypien.ai
|
| 143 |
|
| 144 |
+
CypienAI team
|