dineth554 commited on
Commit
450ffbd
·
verified ·
1 Parent(s): 0cac0dd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -3
README.md CHANGED
@@ -1,3 +1,49 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Nessembele
2
+
3
+ A small coding dataset for practice and learning.
4
+
5
+ ## Quick Start
6
+
7
+ ```python
8
+ from datasets import load_dataset
9
+
10
+ dataset = load_dataset("novastudio/nessembele")
11
+ df = dataset["train"].to_pandas()
12
+ print(df.head())
13
+ ```
14
+
15
+ ## What's Inside
16
+
17
+ - **File**: `coding_dataset.csv`
18
+ - **Format**: CSV with headers
19
+ - **Size**: Small and beginner-friendly
20
+ - **Purpose**: Coding practice and data analysis
21
+
22
+ ## Usage
23
+
24
+ ### Load with Pandas
25
+ ```python
26
+ import pandas as pd
27
+ df = pd.read_csv("hf://datasets/novastudio/nessembele/coding_dataset.csv")
28
+ ```
29
+
30
+ ### GPU Acceleration (Optional)
31
+ ```python
32
+ import cudf # NVIDIA RAPIDS
33
+ df = cudf.read_csv("hf://datasets/novastudio/nessembele/coding_dataset.csv")
34
+ ```
35
+
36
+ ## Practice Ideas
37
+
38
+ - Data exploration and cleaning
39
+ - Basic statistics and visualization
40
+ - Simple machine learning models
41
+ - Algorithm testing
42
+
43
+ ## License
44
+
45
+ MIT - Free to use for any purpose.
46
+
47
+ ---
48
+
49
+ Made by NovaStudio