dryymatt commited on
Commit
37adf43
·
verified ·
1 Parent(s): 9e3f78d

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -5,6 +5,7 @@ tags:
5
  - skill-vault
6
  - syntaxis-prime
7
  - autonomous-agent
 
8
  ---
9
 
10
  # Litehat-DNA — Skill Vault
@@ -67,3 +68,23 @@ The harvest loop runs every 60 minutes:
67
  4. **Git Mirror** — Push to Litehat-DNA
68
 
69
  *Autonomously maintained by Syntaxis Prime — Distill the Fire.*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  - skill-vault
6
  - syntaxis-prime
7
  - autonomous-agent
8
+ - ml-intern
9
  ---
10
 
11
  # Litehat-DNA — Skill Vault
 
68
  4. **Git Mirror** — Push to Litehat-DNA
69
 
70
  *Autonomously maintained by Syntaxis Prime — Distill the Fire.*
71
+
72
+ <!-- ml-intern-provenance -->
73
+ ## Generated by ML Intern
74
+
75
+ 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.
76
+
77
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
78
+ - Source code: https://github.com/huggingface/ml-intern
79
+
80
+ ## Usage
81
+
82
+ ```python
83
+ from transformers import AutoModelForCausalLM, AutoTokenizer
84
+
85
+ model_id = 'dryymatt/Litehat-DNA'
86
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
87
+ model = AutoModelForCausalLM.from_pretrained(model_id)
88
+ ```
89
+
90
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.