Johnyquest7 commited on
Commit
e0fc64c
·
verified ·
1 Parent(s): ed4d41f

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +27 -3
README.md CHANGED
@@ -1,3 +1,27 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - ml-intern
5
+ ---
6
+
7
+ # Johnyquest7/TN5000_model
8
+
9
+ <!-- ml-intern-provenance -->
10
+ ## Generated by ML Intern
11
+
12
+ 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.
13
+
14
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
15
+ - Source code: https://github.com/huggingface/ml-intern
16
+
17
+ ## Usage
18
+
19
+ ```python
20
+ from transformers import AutoModelForCausalLM, AutoTokenizer
21
+
22
+ model_id = 'Johnyquest7/TN5000_model'
23
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
24
+ model = AutoModelForCausalLM.from_pretrained(model_id)
25
+ ```
26
+
27
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.