n-ensemble / README.md
dineth554's picture
Update README.md
450ffbd verified
# Nessembele
A small coding dataset for practice and learning.
## Quick Start
```python
from datasets import load_dataset
dataset = load_dataset("novastudio/nessembele")
df = dataset["train"].to_pandas()
print(df.head())
```
## What's Inside
- **File**: `coding_dataset.csv`
- **Format**: CSV with headers
- **Size**: Small and beginner-friendly
- **Purpose**: Coding practice and data analysis
## Usage
### Load with Pandas
```python
import pandas as pd
df = pd.read_csv("hf://datasets/novastudio/nessembele/coding_dataset.csv")
```
### GPU Acceleration (Optional)
```python
import cudf # NVIDIA RAPIDS
df = cudf.read_csv("hf://datasets/novastudio/nessembele/coding_dataset.csv")
```
## Practice Ideas
- Data exploration and cleaning
- Basic statistics and visualization
- Simple machine learning models
- Algorithm testing
## License
MIT - Free to use for any purpose.
---
Made by NovaStudio