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-v03-SFT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cypienai/cymist-2-v03-SFT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cypienai/cymist-2-v03-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-v03-SFT") model = AutoModelForMultimodalLM.from_pretrained("cypienai/cymist-2-v03-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-v03-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-v03-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-v03-SFT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cypienai/cymist-2-v03-SFT
- SGLang
How to use cypienai/cymist-2-v03-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-v03-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-v03-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-v03-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-v03-SFT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cypienai/cymist-2-v03-SFT with Docker Model Runner:
docker model run hf.co/cypienai/cymist-2-v03-SFT
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,9 +30,6 @@ model-index:
|
|
| 30 |
- type: acc_norm
|
| 31 |
value: 59.12
|
| 32 |
name: normalized accuracy
|
| 33 |
-
source:
|
| 34 |
-
url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=cypienai/cymist-2-v02-SFT
|
| 35 |
-
name: Open LLM Leaderboard
|
| 36 |
- task:
|
| 37 |
type: text-generation
|
| 38 |
name: Text Generation
|
|
@@ -46,9 +43,6 @@ model-index:
|
|
| 46 |
- type: acc_norm
|
| 47 |
value: 82.56
|
| 48 |
name: normalized accuracy
|
| 49 |
-
source:
|
| 50 |
-
url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=cypienai/cymist-2-v02-SFT
|
| 51 |
-
name: Open LLM Leaderboard
|
| 52 |
- task:
|
| 53 |
type: text-generation
|
| 54 |
name: Text Generation
|
|
@@ -62,9 +56,6 @@ model-index:
|
|
| 62 |
metrics:
|
| 63 |
- type: mc2
|
| 64 |
value: 52.12
|
| 65 |
-
source:
|
| 66 |
-
url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=cypienai/cymist-2-v02-SFT
|
| 67 |
-
name: Open LLM Leaderboard
|
| 68 |
- task:
|
| 69 |
type: text-generation
|
| 70 |
name: Text Generation
|
|
@@ -79,9 +70,6 @@ model-index:
|
|
| 79 |
- type: acc
|
| 80 |
value: 36.61
|
| 81 |
name: accuracy
|
| 82 |
-
source:
|
| 83 |
-
url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=cypienai/cymist-2-v02-SFT
|
| 84 |
-
name: Open LLM Leaderboard
|
| 85 |
- task:
|
| 86 |
type: text-generation
|
| 87 |
name: Text Generation
|
|
@@ -96,9 +84,6 @@ model-index:
|
|
| 96 |
- type: acc
|
| 97 |
value: 77.43
|
| 98 |
name: accuracy
|
| 99 |
-
source:
|
| 100 |
-
url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=cypienai/cymist-2-v02-SFT
|
| 101 |
-
name: Open LLM Leaderboard
|
| 102 |
- task:
|
| 103 |
type: text-generation
|
| 104 |
name: Text Generation
|
|
|
|
| 30 |
- type: acc_norm
|
| 31 |
value: 59.12
|
| 32 |
name: normalized accuracy
|
|
|
|
|
|
|
|
|
|
| 33 |
- task:
|
| 34 |
type: text-generation
|
| 35 |
name: Text Generation
|
|
|
|
| 43 |
- type: acc_norm
|
| 44 |
value: 82.56
|
| 45 |
name: normalized accuracy
|
|
|
|
|
|
|
|
|
|
| 46 |
- task:
|
| 47 |
type: text-generation
|
| 48 |
name: Text Generation
|
|
|
|
| 56 |
metrics:
|
| 57 |
- type: mc2
|
| 58 |
value: 52.12
|
|
|
|
|
|
|
|
|
|
| 59 |
- task:
|
| 60 |
type: text-generation
|
| 61 |
name: Text Generation
|
|
|
|
| 70 |
- type: acc
|
| 71 |
value: 36.61
|
| 72 |
name: accuracy
|
|
|
|
|
|
|
|
|
|
| 73 |
- task:
|
| 74 |
type: text-generation
|
| 75 |
name: Text Generation
|
|
|
|
| 84 |
- type: acc
|
| 85 |
value: 77.43
|
| 86 |
name: accuracy
|
|
|
|
|
|
|
|
|
|
| 87 |
- task:
|
| 88 |
type: text-generation
|
| 89 |
name: Text Generation
|