gaurv007 commited on
Commit
fe4294a
·
verified ·
1 Parent(s): 86157cd

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
  # Alpha Factory — Open-Source LLM-Driven Pipeline for WorldQuant BRAIN
2
 
3
  Autonomous alpha generation system using multi-LLM agents with 7-layer acceptance engineering.
@@ -128,3 +132,23 @@ alpha_factory/
128
  | BRAIN account | $0 (existing) |
129
  | uv + Ollama + all deps | $0 |
130
  | Monthly running cost | **$0** |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # Alpha Factory — Open-Source LLM-Driven Pipeline for WorldQuant BRAIN
6
 
7
  Autonomous alpha generation system using multi-LLM agents with 7-layer acceptance engineering.
 
132
  | BRAIN account | $0 (existing) |
133
  | uv + Ollama + all deps | $0 |
134
  | Monthly running cost | **$0** |
135
+
136
+ <!-- ml-intern-provenance -->
137
+ ## Generated by ML Intern
138
+
139
+ 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.
140
+
141
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
142
+ - Source code: https://github.com/huggingface/ml-intern
143
+
144
+ ## Usage
145
+
146
+ ```python
147
+ from transformers import AutoModelForCausalLM, AutoTokenizer
148
+
149
+ model_id = "gaurv007/alpha-factory"
150
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
151
+ model = AutoModelForCausalLM.from_pretrained(model_id)
152
+ ```
153
+
154
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.