Tarek Masryo commited on
Commit ·
0e92b52
1
Parent(s): 2867613
docs: update README
Browse files
CHANGELOG.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
| 1 |
-
#
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
-
|
| 7 |
-
-
|
| 8 |
-
-
|
|
|
|
| 1 |
+
## v1.0.1 — 2026-02-09
|
| 2 |
+
- Renamed canonical CSV to `data/genai_tools_platforms_2025.csv`.
|
| 3 |
+
- Updated docs to reference the new filename.
|
| 4 |
|
| 5 |
+
## v1.0.0 — 2025-09-18
|
| 6 |
+
- Initial release.
|
| 7 |
+
- Added Generative AI tools & platforms catalog (113 rows, 22 fields).
|
| 8 |
+
- Included canonical taxonomy (`category_canonical`, `modality_canonical`).
|
| 9 |
+
- Included access fields (`api_available`, `api_status`, `open_source`) and timeline fields (`release_year`, `years_since_release`).
|
| 10 |
+
- Included modality flags and derived modality counts.
|
README.md
CHANGED
|
@@ -6,107 +6,132 @@ language:
|
|
| 6 |
size_categories:
|
| 7 |
- 100<n<1K
|
| 8 |
|
| 9 |
-
task_categories:
|
| 10 |
-
- tabular-regression
|
| 11 |
-
- tabular-classification
|
| 12 |
-
|
| 13 |
-
|
| 14 |
tags:
|
| 15 |
- generative-ai
|
| 16 |
- llm
|
| 17 |
- tools
|
| 18 |
- platforms
|
| 19 |
-
- tabular
|
| 20 |
-
- dataset
|
| 21 |
-
- benchmarking
|
| 22 |
- catalog
|
|
|
|
|
|
|
| 23 |
- eda
|
|
|
|
|
|
|
| 24 |
---
|
| 25 |
|
| 26 |
-
# 🧠Generative AI Tools & Platforms 2025
|
| 27 |
|
| 28 |
**Author:** [Tarek Masryo](https://huggingface.co/TarekMasryo) · [Kaggle](https://www.kaggle.com/tarekmasryo)
|
| 29 |
-
**License:** CC BY 4.0 (Attribution) — Free for research, education, and commercial use
|
| 30 |
|
| 31 |
---
|
| 32 |
|
| 33 |
## 📌 Dataset Summary
|
| 34 |
-
Clean and structured dataset of **113 Generative AI tools and platforms** released up to 2025.
|
| 35 |
-
Each entry includes vendor, category, capability modalities, API availability, open-source status, release year, and derived features.
|
| 36 |
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
-
|
| 41 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
---
|
| 44 |
|
| 45 |
-
##
|
| 46 |
|
| 47 |
-
**Main file:** `
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
-
|
| 50 |
-
- Core info: tool_name, company, website, source_domain
|
| 51 |
-
- Taxonomy: category_canonical, modality_canonical
|
| 52 |
-
- Access: open_source, api_available, api_status
|
| 53 |
-
- Timeline: release_year, years_since_release
|
| 54 |
-
- Modality flags: mod_text, mod_image, mod_video, mod_audio, mod_code, mod_design, mod_infra, mod_productivity, mod_safety, mod_multimodal
|
| 55 |
-
- Derived: modality_count (sum of
|
| 56 |
|
| 57 |
---
|
| 58 |
|
| 59 |
## 📑 Data Dictionary
|
| 60 |
|
| 61 |
-
| Column
|
| 62 |
-
|------
|
| 63 |
-
| tool_name
|
| 64 |
-
| company
|
| 65 |
-
|
|
| 66 |
-
|
|
| 67 |
-
|
|
| 68 |
-
|
|
| 69 |
-
|
|
| 70 |
-
|
|
| 71 |
-
|
|
| 72 |
-
| release_year
|
| 73 |
-
| years_since_release| Years since release (2025
|
| 74 |
-
|
|
| 75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
---
|
| 78 |
|
| 79 |
## 🚀 How to Use
|
| 80 |
|
|
|
|
|
|
|
| 81 |
```python
|
| 82 |
from datasets import load_dataset
|
| 83 |
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
|
|
|
| 87 |
|
| 88 |
-
# Convert to pandas
|
| 89 |
-
import pandas as pd
|
| 90 |
df = ds["train"].to_pandas()
|
| 91 |
print(df.head())
|
|
|
|
| 92 |
|
| 93 |
-
#
|
|
|
|
|
|
|
|
|
|
| 94 |
api_rate = df["api_available"].mean()
|
| 95 |
-
print("API availability:", round(api_rate, 2))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
```
|
| 97 |
|
| 98 |
---
|
| 99 |
|
| 100 |
## 💡 Use Cases
|
| 101 |
-
|
| 102 |
-
-
|
| 103 |
-
- Benchmark API and open-source coverage across categories
|
| 104 |
-
-
|
| 105 |
-
-
|
|
|
|
| 106 |
|
| 107 |
---
|
| 108 |
|
| 109 |
## 📜 License & Attribution
|
|
|
|
| 110 |
- Data compiled from official websites, vendor docs, GitHub, and product pages
|
| 111 |
- Structured and standardized by **Tarek Masryo**
|
| 112 |
-
- Licensed under **CC BY 4.0 (Attribution)** → Free for research, education, and commercial use
|
|
|
|
| 6 |
size_categories:
|
| 7 |
- 100<n<1K
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
tags:
|
| 10 |
- generative-ai
|
| 11 |
- llm
|
| 12 |
- tools
|
| 13 |
- platforms
|
|
|
|
|
|
|
|
|
|
| 14 |
- catalog
|
| 15 |
+
- benchmarking
|
| 16 |
+
- ecosystem
|
| 17 |
- eda
|
| 18 |
+
- tabular
|
| 19 |
+
- dataset
|
| 20 |
---
|
| 21 |
|
| 22 |
+
# 🧠Generative AI Tools & Platforms (2025)
|
| 23 |
|
| 24 |
**Author:** [Tarek Masryo](https://huggingface.co/TarekMasryo) · [Kaggle](https://www.kaggle.com/tarekmasryo)
|
| 25 |
+
**License:** CC BY 4.0 (Attribution) — Free for research, education, and commercial use
|
| 26 |
|
| 27 |
---
|
| 28 |
|
| 29 |
## 📌 Dataset Summary
|
|
|
|
|
|
|
| 30 |
|
| 31 |
+
A clean, structured catalog of **113 Generative AI tools and platforms** released up to 2025.
|
| 32 |
+
|
| 33 |
+
Each row represents a single tool/platform and includes:
|
| 34 |
+
- Vendor/maintainer
|
| 35 |
+
- Canonical category and primary modality
|
| 36 |
+
- API availability and status
|
| 37 |
+
- Open-source indicator
|
| 38 |
+
- Release year + derived timeline features
|
| 39 |
+
- Modality flags and derived breadth count
|
| 40 |
+
|
| 41 |
+
This dataset is designed for ecosystem mapping, benchmarking, and analytics workflows.
|
| 42 |
|
| 43 |
---
|
| 44 |
|
| 45 |
+
## ✅ What’s Inside
|
| 46 |
|
| 47 |
+
**Main file (canonical):** `data/genai_tools_platforms_2025.csv`
|
| 48 |
+
**Unit of analysis:** 1 row = 1 tool/platform
|
| 49 |
+
**Rows:** 113
|
| 50 |
+
**Columns:** 22
|
| 51 |
|
| 52 |
+
### Column groups
|
| 53 |
+
- **Core info:** `tool_name`, `company`, `website`, `source_domain`
|
| 54 |
+
- **Taxonomy:** `category_canonical`, `modality_canonical`
|
| 55 |
+
- **Access:** `open_source`, `api_available`, `api_status`
|
| 56 |
+
- **Timeline:** `release_year`, `years_since_release`
|
| 57 |
+
- **Modality flags:** `mod_text`, `mod_image`, `mod_video`, `mod_audio`, `mod_code`, `mod_design`, `mod_infra`, `mod_productivity`, `mod_safety`, `mod_multimodal`
|
| 58 |
+
- **Derived:** `modality_count` (sum of supported modality flags)
|
| 59 |
|
| 60 |
---
|
| 61 |
|
| 62 |
## 📑 Data Dictionary
|
| 63 |
|
| 64 |
+
| Column | Type | Description |
|
| 65 |
+
|---|---|---|
|
| 66 |
+
| tool_name | string | Tool/platform name (intended unique key) |
|
| 67 |
+
| company | string | Vendor/maintainer |
|
| 68 |
+
| website | string | Official homepage (full URL) |
|
| 69 |
+
| source_domain | string | Extracted domain for grouping (derived from `website`) |
|
| 70 |
+
| category_canonical | string | Standardized use-case family (e.g., LLMs, Image Gen, Video Gen, RAG) |
|
| 71 |
+
| modality_canonical | string | Primary capability type (e.g., text, image, video, audio, code, multimodal) |
|
| 72 |
+
| open_source | int (0/1) | 1 if marked open-source, else 0 |
|
| 73 |
+
| api_available | int (0/1) | 1 if a public API is available, else 0 |
|
| 74 |
+
| api_status | string | API status (`api` or `unavailable`) |
|
| 75 |
+
| release_year | int | First public release/launch year |
|
| 76 |
+
| years_since_release | int | Years since release (computed as `2025 - release_year`) |
|
| 77 |
+
| mod_text | int (0/1) | Supports text modality |
|
| 78 |
+
| mod_image | int (0/1) | Supports image modality |
|
| 79 |
+
| mod_video | int (0/1) | Supports video modality |
|
| 80 |
+
| mod_audio | int (0/1) | Supports audio modality |
|
| 81 |
+
| mod_code | int (0/1) | Supports code modality |
|
| 82 |
+
| mod_design | int (0/1) | Supports design modality |
|
| 83 |
+
| mod_infra | int (0/1) | Supports infra/dev tooling modality |
|
| 84 |
+
| mod_productivity | int (0/1) | Supports productivity modality |
|
| 85 |
+
| mod_safety | int (0/1) | Supports safety/moderation modality |
|
| 86 |
+
| mod_multimodal | int (0/1) | Marked as multimodal (as provided in the dataset) |
|
| 87 |
+
| modality_count | int | Sum of supported modality flags |
|
| 88 |
|
| 89 |
---
|
| 90 |
|
| 91 |
## 🚀 How to Use
|
| 92 |
|
| 93 |
+
### Load with 🤗 Datasets
|
| 94 |
+
|
| 95 |
```python
|
| 96 |
from datasets import load_dataset
|
| 97 |
|
| 98 |
+
ds = load_dataset(
|
| 99 |
+
"tarekmasryo/genai-tools-platforms-data",
|
| 100 |
+
data_files="data/genai_tools_platforms_2025.csv",
|
| 101 |
+
)
|
| 102 |
|
|
|
|
|
|
|
| 103 |
df = ds["train"].to_pandas()
|
| 104 |
print(df.head())
|
| 105 |
+
```
|
| 106 |
|
| 107 |
+
### Quick checks
|
| 108 |
+
|
| 109 |
+
```python
|
| 110 |
+
# API coverage rate
|
| 111 |
api_rate = df["api_available"].mean()
|
| 112 |
+
print("API availability:", round(float(api_rate), 2))
|
| 113 |
+
|
| 114 |
+
# Category distribution
|
| 115 |
+
print(df["category_canonical"].value_counts().head(10))
|
| 116 |
+
|
| 117 |
+
# Modality breadth
|
| 118 |
+
print(df["modality_count"].describe())
|
| 119 |
```
|
| 120 |
|
| 121 |
---
|
| 122 |
|
| 123 |
## 💡 Use Cases
|
| 124 |
+
|
| 125 |
+
- Build dashboards and market maps for the GenAI landscape
|
| 126 |
+
- Benchmark API and open-source coverage across categories
|
| 127 |
+
- Track release trends and adoption timelines
|
| 128 |
+
- Cluster tools by capability breadth and modality mix
|
| 129 |
+
- Train ML models for tool recommendation and capability scoring
|
| 130 |
|
| 131 |
---
|
| 132 |
|
| 133 |
## 📜 License & Attribution
|
| 134 |
+
|
| 135 |
- Data compiled from official websites, vendor docs, GitHub, and product pages
|
| 136 |
- Structured and standardized by **Tarek Masryo**
|
| 137 |
+
- Licensed under **CC BY 4.0 (Attribution)** → Free for research, education, and commercial use
|
data/{Generative AI Tools - Platforms 2025.csv → genai_tools_platforms_2025.csv}
RENAMED
|
File without changes
|