LightningCreeper commited on
Commit
4f27b5e
·
verified ·
1 Parent(s): 9174a04

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Beginner AI Tutorial Dataset
2
+
3
+ This dataset repository is a small tutorial resource for beginners learning how datasets are documented on Hugging Face.
4
+
5
+ ## What this tutorial covers
6
+
7
+ - How to describe the purpose of a dataset
8
+ - - How to document expected files and columns
9
+ - - How to explain basic loading steps with the `datasets` library
10
+
11
+ - ## Example usage
12
+
13
+ - ```python
14
+ from datasets import load_dataset
15
+
16
+ dataset = load_dataset("LightningCreeper/beginner-ai-tutorial-dataset")
17
+ print(dataset)
18
+ ```
19
+
20
+ ## Notes
21
+
22
+ This repository is intended as a starter resource and can be expanded with sample data, tasks, and evaluation examples.
23
+