lewtun HF Staff commited on
Commit
82535df
·
verified ·
1 Parent(s): b0bd78b

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +22 -1
README.md CHANGED
@@ -6,6 +6,7 @@ tags:
6
  - generated_from_trainer
7
  - grpo
8
  - trl
 
9
  licence: license
10
  ---
11
 
@@ -64,4 +65,24 @@ Cite TRL as:
64
  url = {https://github.com/huggingface/trl},
65
  year = {2020}
66
  }
67
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - generated_from_trainer
7
  - grpo
8
  - trl
9
+ - ml-intern
10
  licence: license
11
  ---
12
 
 
65
  url = {https://github.com/huggingface/trl},
66
  year = {2020}
67
  }
68
+ ```
69
+
70
+ <!-- ml-intern-provenance -->
71
+ ## Generated by ML Intern
72
+
73
+ This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
74
+
75
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
76
+ - Source code: https://github.com/huggingface/ml-intern
77
+
78
+ ## Usage
79
+
80
+ ```python
81
+ from transformers import AutoModelForCausalLM, AutoTokenizer
82
+
83
+ model_id = 'lewtun/qwen3-0.6b-wordle-grpo'
84
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
85
+ model = AutoModelForCausalLM.from_pretrained(model_id)
86
+ ```
87
+
88
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.