razvan commited on
Commit
083ef84
·
verified ·
1 Parent(s): 00b7d49

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
  # 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.
@@ -239,3 +243,23 @@ requests>=2.28.0 # HTTP client for Polymarket API
239
  - Tepelyan, R. (2026). *Efficient Multivariate Kelly Optimization*. Bloomberg.
240
  - Canteen (2026). *Unbundling the Prediction Market Stack*.
241
  - Circle (2026). *USDC OpenClaw Hackathon*.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.
 
243
  - Tepelyan, R. (2026). *Efficient Multivariate Kelly Optimization*. Bloomberg.
244
  - Canteen (2026). *Unbundling the Prediction Market Stack*.
245
  - Circle (2026). *USDC OpenClaw Hackathon*.
246
+
247
+ <!-- ml-intern-provenance -->
248
+ ## Generated by ML Intern
249
+
250
+ 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.
251
+
252
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
253
+ - Source code: https://github.com/huggingface/ml-intern
254
+
255
+ ## Usage
256
+
257
+ ```python
258
+ from transformers import AutoModelForCausalLM, AutoTokenizer
259
+
260
+ model_id = "razvan/builderbrain"
261
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
262
+ model = AutoModelForCausalLM.from_pretrained(model_id)
263
+ ```
264
+
265
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.