AI Youth Alliance - AIYA commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,53 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
+
- tabular-classification
|
| 6 |
+
tags:
|
| 7 |
+
- media-integrity
|
| 8 |
+
- finance
|
| 9 |
+
- deepfake-detection
|
| 10 |
+
- education
|
| 11 |
+
- student-curated
|
| 12 |
+
pretty_name: AIYA Forums Toolkit & Benchmark Data
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
+
configs:
|
| 16 |
+
- config_name: default
|
| 17 |
+
data_files:
|
| 18 |
+
- split: train
|
| 19 |
+
path: sample.csv
|
| 20 |
---
|
| 21 |
+
|
| 22 |
+
# AIYA Forums Toolkit & Benchmark Data 🛠️
|
| 23 |
+
|
| 24 |
+
This dataset repository serves as the official, foundational entry point for local school chapters of the **AI Youth Alliance (AIYA)**. It houses structured exercises, evaluation benchmarks, and framework starter kits used across the **AIYA Coding Forum**, the **AIYA Finance Forum**, and the **AIYA Democracy and Media Forum**.
|
| 25 |
+
|
| 26 |
+
## 📁 Dataset & Forum Structure - UNDER CONSTRUCTION
|
| 27 |
+
* `sample.csv` — Foundational evaluation rows for student verification workflows.
|
| 28 |
+
* `/coding-toolkit/` — Environments and prompts for testing model behaviors and algorithmic limitations.
|
| 29 |
+
* `/finance-toolkit/` — Tabular data structures for simple predictive analysis, market modeling, and economic tracking.
|
| 30 |
+
* `/democracy-&-the-media-toolkit/` — Reference text benchmarks for analyzing the impact of AI on media, democratic discourse, and political outcomes (including text/voice pattern testing and deepfake classification metrics).
|
| 31 |
+
|
| 32 |
+
## ⚠️ Academic Notice & Cognitive Well-Being
|
| 33 |
+
In alignment with recent cognitive science research (including landmark studies from MIT), AIYA explicitly warns against over-reliance on generative tooling. Offloading critical thought to automated systems causes measurable atrophy in analytical capacity, genuine subject mastery, and real authorship.
|
| 34 |
+
|
| 35 |
+
Use the exercises and benchmarks in this repository to explore AI as a **force multiplier for your mind**, not a replacement for your intellect.
|
| 36 |
+
|
| 37 |
+
## 🚀 Getting Started with the Data
|
| 38 |
+
### 1. Previewing Data Online
|
| 39 |
+
You can explore, filter, and preview the hosted CSV benchmarks directly using the **Dataset Viewer** tab at the top of this Hugging Face page.
|
| 40 |
+
|
| 41 |
+
### 2. Loading via the Datasets Library
|
| 42 |
+
To pull these toolkits and benchmark rows directly into your local Python scripts or Jupyter Notebooks, install the Hugging Face `datasets` library and run:
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
from datasets import load_dataset
|
| 46 |
+
|
| 47 |
+
# Load the student forums toolkit dataset
|
| 48 |
+
dataset = load_dataset("aiyouthalliance/aiya-forums-toolkit")
|
| 49 |
+
print(dataset['train'])
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
## 🚀 Local Chapter Coordination
|
| 53 |
+
Coordinate with your school's **Faculty and Administrative Advisor** to clear local school network guidelines regarding dataset access. For support, reach out to your local chapter lead or contact us directly at **[aiyouthalliance.org](https://aiyouthalliance.org)**.
|