Zaynes commited on
Commit
dda6293
·
verified ·
1 Parent(s): 624816e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # M-R1 distilled baseline (cd3args only)
2
+
3
+ - Exported from LLaMA-Factory
4
+ - Intended for Countdown 3-args (baseline)
5
+
6
+ ## Usage
7
+
8
+ ```python
9
+ from transformers import AutoModelForCausalLM, AutoTokenizer
10
+ tok = AutoTokenizer.from_pretrained('TAUR-dev/M-R1_distilled_baseline_cd3args_only')
11
+ model = AutoModelForCausalLM.from_pretrained('TAUR-dev/M-R1_distilled_baseline_cd3args_only', torch_dtype='auto')
12
+ ```