Zaynes's picture
Upload README.md with huggingface_hub
dda6293 verified
# M-R1 distilled baseline (cd3args only)
- Exported from LLaMA-Factory
- Intended for Countdown 3-args (baseline)
## Usage
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
tok = AutoTokenizer.from_pretrained('TAUR-dev/M-R1_distilled_baseline_cd3args_only')
model = AutoModelForCausalLM.from_pretrained('TAUR-dev/M-R1_distilled_baseline_cd3args_only', torch_dtype='auto')
```