gaurv007 commited on
Commit
4eb54d8
·
verified ·
1 Parent(s): 9dd16b4

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -4,6 +4,7 @@ tags:
4
  - quantitative-finance
5
  - alpha-generation
6
  - worldquant-brain
 
7
  ---
8
 
9
  # Alpha Factory v0.2.0
@@ -205,3 +206,23 @@ alpha_factory/
205
  ## License
206
 
207
  MIT — use at your own risk. This is not financial advice. BRAIN simulations are the ground truth.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - quantitative-finance
5
  - alpha-generation
6
  - worldquant-brain
7
+ - ml-intern
8
  ---
9
 
10
  # Alpha Factory v0.2.0
 
206
  ## License
207
 
208
  MIT — use at your own risk. This is not financial advice. BRAIN simulations are the ground truth.
209
+
210
+ <!-- ml-intern-provenance -->
211
+ ## Generated by ML Intern
212
+
213
+ 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.
214
+
215
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
216
+ - Source code: https://github.com/huggingface/ml-intern
217
+
218
+ ## Usage
219
+
220
+ ```python
221
+ from transformers import AutoModelForCausalLM, AutoTokenizer
222
+
223
+ model_id = 'gaurv007/alpha-factory'
224
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
225
+ model = AutoModelForCausalLM.from_pretrained(model_id)
226
+ ```
227
+
228
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.