Text Generation
Safetensors
GGUF
English
qwen3_5_text
claude
conversational
instruction-tuned
multilingual
reasoning
open-source
Eval Results
squ11z1 commited on
Commit
b9c591d
·
verified ·
1 Parent(s): 296253f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -4
README.md CHANGED
@@ -18,7 +18,7 @@ base_model:
18
  - Qwen/Qwen3.5-9B
19
  ---
20
 
21
- # Claude OSS 9B
22
 
23
  > **Disclaimer:** This is **not** an official release by Anthropic.
24
  > Claude OSS 9B is an independent open model project.
@@ -61,7 +61,7 @@ The data mix emphasized:
61
 
62
  ## Usage
63
  - Transformers
64
-
65
  from transformers import AutoTokenizer, AutoModelForCausalLM
66
  import torch
67
 
@@ -97,6 +97,8 @@ with torch.no_grad():
97
 
98
  prompt_len = inputs["input_ids"].shape[1]
99
  print(tokenizer.decode(outputs[0][prompt_len:], skip_special_tokens=True))
 
100
  - GGUF / llama.cpp
101
-
102
- ./llama-cli -m claude-oss-9b-q4_k_m.gguf -p "Who are you?"
 
 
18
  - Qwen/Qwen3.5-9B
19
  ---
20
 
21
+ # Claude OSS 9b
22
 
23
  > **Disclaimer:** This is **not** an official release by Anthropic.
24
  > Claude OSS 9B is an independent open model project.
 
61
 
62
  ## Usage
63
  - Transformers
64
+ ```python
65
  from transformers import AutoTokenizer, AutoModelForCausalLM
66
  import torch
67
 
 
97
 
98
  prompt_len = inputs["input_ids"].shape[1]
99
  print(tokenizer.decode(outputs[0][prompt_len:], skip_special_tokens=True))
100
+ ```
101
  - GGUF / llama.cpp
102
+ - ```bash
103
+ ./llama-cli -m claude-oss-9b-q4_k_m.gguf -p "Who are you?"
104
+ ```