Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# BuilderBrain
|
| 2 |
|
| 3 |
**Agentic Prediction Market Intelligence** — An AI research and trading agent that reads the prediction-market universe, produces structured probabilities and reasoning traces, and routes orders via Polymarket builder codes, settling capital over Arc using USDC Nanopayments and Gateway.
|
|
@@ -303,3 +307,23 @@ requests>=2.28.0 # HTTP client for Polymarket + Circle APIs
|
|
| 303 |
---
|
| 304 |
|
| 305 |
*ML Intern generated repository. See source code for implementation details and REAL_VS_SIMULATED.md for integration status.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# BuilderBrain
|
| 6 |
|
| 7 |
**Agentic Prediction Market Intelligence** — An AI research and trading agent that reads the prediction-market universe, produces structured probabilities and reasoning traces, and routes orders via Polymarket builder codes, settling capital over Arc using USDC Nanopayments and Gateway.
|
|
|
|
| 307 |
---
|
| 308 |
|
| 309 |
*ML Intern generated repository. See source code for implementation details and REAL_VS_SIMULATED.md for integration status.*
|
| 310 |
+
|
| 311 |
+
<!-- ml-intern-provenance -->
|
| 312 |
+
## Generated by ML Intern
|
| 313 |
+
|
| 314 |
+
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.
|
| 315 |
+
|
| 316 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 317 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 318 |
+
|
| 319 |
+
## Usage
|
| 320 |
+
|
| 321 |
+
```python
|
| 322 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 323 |
+
|
| 324 |
+
model_id = "razvan/builderbrain"
|
| 325 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 326 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 327 |
+
```
|
| 328 |
+
|
| 329 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|