CoolFace
Datasetpublic

nova-ai-labs/n-ensemble

Nessembele A small coding dataset for practice and learning. Quick Start 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 import pandas as pd df =… See the full description on the dataset page: https://huggingface.co/datasets/nova-ai-labs/n-ensemble.

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes9downloads
Dataset Card

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