gaurv007 commited on
Commit
7e2810c
·
verified ·
1 Parent(s): af04321

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.
@@ -88,3 +92,23 @@ alpha_factory/
88
  | Local GPU (RTX 3090/4090) | $0 (already owned) |
89
  | BRAIN account | $0 (existing) |
90
  | 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.
 
92
  | Local GPU (RTX 3090/4090) | $0 (already owned) |
93
  | BRAIN account | $0 (existing) |
94
  | Monthly running cost | $0 |
95
+
96
+ <!-- ml-intern-provenance -->
97
+ ## Generated by ML Intern
98
+
99
+ 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.
100
+
101
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
102
+ - Source code: https://github.com/huggingface/ml-intern
103
+
104
+ ## Usage
105
+
106
+ ```python
107
+ from transformers import AutoModelForCausalLM, AutoTokenizer
108
+
109
+ model_id = "gaurv007/alpha-factory"
110
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
111
+ model = AutoModelForCausalLM.from_pretrained(model_id)
112
+ ```
113
+
114
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.