Tarek Masryo commited on
Commit
0e92b52
·
1 Parent(s): 2867613

docs: update README

Browse files
CHANGELOG.md CHANGED
@@ -1,8 +1,10 @@
1
- # Changelog
 
 
2
 
3
- All notable changes to this dataset will be documented in this file.
4
-
5
- ### Added
6
- - Initial release of **Generative AI Tools & Platforms 2025**
7
- - 113 tools across categories, with 22 standardized fields
8
- - Includes taxonomy, modality flags, API availability, open-source status, release years, and derived capability counts
 
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
- The dataset is ideal for:
38
- - Mapping the Generative AI ecosystem
39
- - Benchmarking API and open-source coverage
40
- - Timeline analyses of tool adoption
41
- - Training ML models for tool recommendation and capability scoring
 
 
 
 
 
 
42
 
43
  ---
44
 
45
- ## 🗂 Dataset Structure
46
 
47
- **Main file:** `Generative AI Tools - Platforms 2025.csv` (1 row per tool)
 
 
 
48
 
49
- **Columns (22):**
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 content-generating modalities)
56
 
57
  ---
58
 
59
  ## 📑 Data Dictionary
60
 
61
- | Column | Description |
62
- |--------------------|-----------------------------------------------------------------------|
63
- | tool_name | Tool/platform name (unique) |
64
- | company | Vendor/maintainer |
65
- | category_canonical | Standardized use-case family (e.g., LLMs, Image Gen, Video Gen, RAG) |
66
- | modality_canonical | Primary capability type: text, image, video, audio, code, multimodal… |
67
- | open_source | 1 if open-source, else 0 |
68
- | api_available | 1 if public API available, else 0 |
69
- | api_status | API status (`api` or `unavailable`) |
70
- | website | Official homepage (full URL) |
71
- | source_domain | Extracted domain for grouping |
72
- | release_year | First public release/launch year |
73
- | years_since_release| Years since release (2025 − release_year) |
74
- | modality flags | Binary indicators for text/image/video/audio/code/design/infra/… |
75
- | modality_count | Sum of content-generating modalities |
 
 
 
 
 
 
 
 
 
76
 
77
  ---
78
 
79
  ## 🚀 How to Use
80
 
 
 
81
  ```python
82
  from datasets import load_dataset
83
 
84
- # Load dataset
85
- ds = load_dataset("TarekMasryo/Generative-AI-Tools-Platforms-2025")
86
- print(ds)
 
87
 
88
- # Convert to pandas
89
- import pandas as pd
90
  df = ds["train"].to_pandas()
91
  print(df.head())
 
92
 
93
- # Example: API coverage rate
 
 
 
94
  api_rate = df["api_available"].mean()
95
- print("API availability:", round(api_rate, 2))
 
 
 
 
 
 
96
  ```
97
 
98
  ---
99
 
100
  ## 💡 Use Cases
101
- - Build dashboards and market maps for Generative AI
102
- - Analyze release trends and adoption timelines
103
- - Benchmark API and open-source coverage across categories
104
- - Cluster tools by capability breadth and modality mix
105
- - Train ML models for tool recommendation
 
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