Datasets:
Update dataset card
Browse files
README.md
CHANGED
|
@@ -84,6 +84,8 @@ configs:
|
|
| 84 |
data_files: '*/public-leaderboards.jsonl'
|
| 85 |
- config_name: conferences
|
| 86 |
data_files: '*/conferences.jsonl'
|
|
|
|
|
|
|
| 87 |
- config_name: funding
|
| 88 |
data_files: '*/funding.jsonl'
|
| 89 |
- config_name: model-cards
|
|
@@ -154,6 +156,7 @@ Each daily snapshot lives in a `YYYY-MM-DD/` subfolder with one JSONL file per f
|
|
| 154 |
| `benchmark-registry.jsonl` | ~24 | Benchmark catalog with active/saturated status. |
|
| 155 |
| `public-leaderboards.jsonl` | ~20 | Pointers to every live public AI leaderboard. |
|
| 156 |
| `conferences.jsonl` | ~18 | AI conferences (research, industry, developer) with dates. |
|
|
|
|
| 157 |
| `funding.jsonl` | ~21 | AI funding rounds catalog by stage and category. |
|
| 158 |
| `model-cards.jsonl` | ~8 | Per-model system / safety / red-team document index. |
|
| 159 |
| `ai-policy.jsonl` | ~10 | AI regulation tracker (EU AI Act, US executive orders, etc). |
|
|
@@ -171,6 +174,10 @@ Each daily snapshot lives in a `YYYY-MM-DD/` subfolder with one JSONL file per f
|
|
| 171 |
|
| 172 |
## Quick start
|
| 173 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 174 |
```python
|
| 175 |
from datasets import load_dataset
|
| 176 |
|
|
@@ -179,6 +186,38 @@ news = load_dataset("tensorfeed/ai-ecosystem-daily", "news", split="train")
|
|
| 179 |
|
| 180 |
# Model pricing time series (load all dates, filter by date column or filename)
|
| 181 |
models = load_dataset("tensorfeed/ai-ecosystem-daily", "models", split="train")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
```
|
| 183 |
|
| 184 |
## Update cadence
|
|
@@ -191,7 +230,7 @@ Cannot be backfilled. Every day without a snapshot is a day of history lost.
|
|
| 191 |
|
| 192 |
This dataset is released under TensorFeed's **inference-only** license. You may use it as input context for AI agents and LLM inference (RAG, evals, prompt context, agent tools). You may not use it as training data for foundation models without explicit written permission.
|
| 193 |
|
| 194 |
-
|
| 195 |
|
| 196 |
## Live API
|
| 197 |
|
|
|
|
| 84 |
data_files: '*/public-leaderboards.jsonl'
|
| 85 |
- config_name: conferences
|
| 86 |
data_files: '*/conferences.jsonl'
|
| 87 |
+
- config_name: model-deprecations
|
| 88 |
+
data_files: '*/model-deprecations.jsonl'
|
| 89 |
- config_name: funding
|
| 90 |
data_files: '*/funding.jsonl'
|
| 91 |
- config_name: model-cards
|
|
|
|
| 156 |
| `benchmark-registry.jsonl` | ~24 | Benchmark catalog with active/saturated status. |
|
| 157 |
| `public-leaderboards.jsonl` | ~20 | Pointers to every live public AI leaderboard. |
|
| 158 |
| `conferences.jsonl` | ~18 | AI conferences (research, industry, developer) with dates. |
|
| 159 |
+
| `model-deprecations.jsonl` | ~12 | Provider model retirement and deprecation calendar (OpenAI, Anthropic, Google, Cohere, etc). Each row: provider, model, status (announced / deprecated / sunsetted), announced/deprecation/sunset dates, recommended replacement model, source URL pointing to the provider's own announcement. |
|
| 160 |
| `funding.jsonl` | ~21 | AI funding rounds catalog by stage and category. |
|
| 161 |
| `model-cards.jsonl` | ~8 | Per-model system / safety / red-team document index. |
|
| 162 |
| `ai-policy.jsonl` | ~10 | AI regulation tracker (EU AI Act, US executive orders, etc). |
|
|
|
|
| 174 |
|
| 175 |
## Quick start
|
| 176 |
|
| 177 |
+
The dataset is published in two formats. Pick the one that fits your stack.
|
| 178 |
+
|
| 179 |
+
### Hugging Face `datasets` library (Python, JSONL on the `main` branch)
|
| 180 |
+
|
| 181 |
```python
|
| 182 |
from datasets import load_dataset
|
| 183 |
|
|
|
|
| 186 |
|
| 187 |
# Model pricing time series (load all dates, filter by date column or filename)
|
| 188 |
models = load_dataset("tensorfeed/ai-ecosystem-daily", "models", split="train")
|
| 189 |
+
|
| 190 |
+
# Model deprecation calendar
|
| 191 |
+
deprecations = load_dataset("tensorfeed/ai-ecosystem-daily", "model-deprecations", split="train")
|
| 192 |
+
```
|
| 193 |
+
|
| 194 |
+
### DuckDB (SQL directly against the Parquet branch, no Python deps)
|
| 195 |
+
|
| 196 |
+
The same data is available as Parquet on the `refs/convert/parquet` branch, auto-generated by Hugging Face. DuckDB can query it directly with no install of `datasets`.
|
| 197 |
+
|
| 198 |
+
```sql
|
| 199 |
+
-- Latest deprecation announcements across all providers
|
| 200 |
+
SELECT provider, model, status, deprecation_date, replacement
|
| 201 |
+
FROM 'https://huggingface.co/datasets/tensorfeed/ai-ecosystem-daily/resolve/refs%2Fconvert%2Fparquet/model-deprecations/train/0000.parquet'
|
| 202 |
+
ORDER BY deprecation_date DESC;
|
| 203 |
+
```
|
| 204 |
+
|
| 205 |
+
### Pandas (read Parquet directly)
|
| 206 |
+
|
| 207 |
+
```python
|
| 208 |
+
import pandas as pd
|
| 209 |
+
|
| 210 |
+
url = "https://huggingface.co/datasets/tensorfeed/ai-ecosystem-daily/resolve/refs%2Fconvert%2Fparquet/news/train/0000.parquet"
|
| 211 |
+
df = pd.read_parquet(url)
|
| 212 |
+
```
|
| 213 |
+
|
| 214 |
+
### ClickHouse (analytics workloads on the time-series feeds)
|
| 215 |
+
|
| 216 |
+
```sql
|
| 217 |
+
SELECT provider, AVG(latency_ms) AS avg_latency
|
| 218 |
+
FROM url('https://huggingface.co/datasets/tensorfeed/ai-ecosystem-daily/resolve/refs%2Fconvert%2Fparquet/probe/train/0000.parquet', Parquet)
|
| 219 |
+
GROUP BY provider
|
| 220 |
+
ORDER BY avg_latency;
|
| 221 |
```
|
| 222 |
|
| 223 |
## Update cadence
|
|
|
|
| 230 |
|
| 231 |
This dataset is released under TensorFeed's **inference-only** license. You may use it as input context for AI agents and LLM inference (RAG, evals, prompt context, agent tools). You may not use it as training data for foundation models without explicit written permission.
|
| 232 |
|
| 233 |
+
The full Agent Fair-Trade Agreement (AFTA) v1.0 is published at [tensorfeed.ai/whitepaper](https://tensorfeed.ai/whitepaper) and the public-facing summary at [tensorfeed.ai/agent-fair-trade](https://tensorfeed.ai/agent-fair-trade). Both documents cover the rationale, the receipt-signing infrastructure, the federation pattern, and the machine-payable upgrade path for the live API tier.
|
| 234 |
|
| 235 |
## Live API
|
| 236 |
|