01RAI commited on
Commit
d3919ba
·
verified ·
1 Parent(s): ba0c51d

Trim org card to identity-only (no code, no launch details)

Browse files
Files changed (1) hide show
  1. README.md +2 -24
README.md CHANGED
@@ -9,28 +9,6 @@ pinned: false
9
 
10
  # Zero One Research
11
 
12
- **Indie AI research lab in Bratislava, EU.** We build small, calibrated foundation models for tabular data — the structured rows that don't fit a chatbot.
13
 
14
- ## PredictLM v1
15
-
16
- Two open-weight tabular foundation models, Apache-2.0:
17
-
18
- - [`predictlm-mini-13m`](https://huggingface.co/zerooneresearch/predictlm-mini-13m) — 13.5M parameters, 54 MB. Distilled from Base. CPU / edge.
19
- - [`predictlm-base-26m`](https://huggingface.co/zerooneresearch/predictlm-base-26m) — 26.2M parameters, 105 MB. Highest-accuracy model in the family.
20
-
21
- **Headline**: 0.751 classification accuracy / 0.609 regression R² on a locked 25-dataset OpenML benchmark via the published Duo + TTT (test-time training) recipe. Built by one person on a Mac Studio in two weeks. Negative results documented alongside the wins.
22
-
23
- ```python
24
- from predictlm import PredictLM
25
- model = PredictLM.from_pretrained("zerooneresearch/predictlm-mini-13m")
26
- preds = model.fit(X_train, y_train).predict(X_test)
27
- ```
28
-
29
- ## Open by default — with one caveat
30
-
31
- v1 weights and research are open under Apache-2.0. Future premium models may follow a Mistral-style split — community-tier open, premium hosted-only. We'll be explicit on each release.
32
-
33
- ## Companion artifacts
34
-
35
- - **MCP server** for LLM agents (Claude Desktop, Cursor, Continue): `pip install predictlm-mcp` ([source](https://github.com/matej-01RAI/predictlm-mcp))
36
- - **Python package**: [`predictlm`](https://pypi.org/project/predictlm/) on PyPI
 
9
 
10
  # Zero One Research
11
 
12
+ Indie AI research lab in Bratislava, EU. We build small, calibrated foundation models for tabular data — the structured rows that don't fit a chatbot.
13
 
14
+ Our first release, **PredictLM v1**, is open under Apache-2.0. Future premium models may follow a Mistral-style split — community-tier open, premium hosted-only. We'll be explicit about which tier each release is on.