Premchan369 commited on
Commit
2c50125
·
verified ·
1 Parent(s): 919939f

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # Q-TensorFormer v3
2
 
3
  <div align="center">
@@ -443,3 +447,23 @@ Built with:
443
  [🤗 Model on Hub](https://huggingface.co/Premchan369/q-tensorformer)
444
 
445
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # Q-TensorFormer v3
6
 
7
  <div align="center">
 
447
  [🤗 Model on Hub](https://huggingface.co/Premchan369/q-tensorformer)
448
 
449
  </div>
450
+
451
+ <!-- ml-intern-provenance -->
452
+ ## Generated by ML Intern
453
+
454
+ 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.
455
+
456
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
457
+ - Source code: https://github.com/huggingface/ml-intern
458
+
459
+ ## Usage
460
+
461
+ ```python
462
+ from transformers import AutoModelForCausalLM, AutoTokenizer
463
+
464
+ model_id = 'Premchan369/q-tensorformer'
465
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
466
+ model = AutoModelForCausalLM.from_pretrained(model_id)
467
+ ```
468
+
469
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.