SentimentSpark / README.md
ghostai1's picture
Update README.md
c61b2c1 verified
|
raw
history blame
3.12 kB
metadata
title: SentimentSpark
emoji: πŸ†
colorFrom: blue
colorTo: gray
sdk: static
pinned: false
license: apache-2.0
short_description: SentimentSpark

File Tree

SentimentSpark/

β”œβ”€β”€ data.csv # Dataset: CSV with index, text, and label columns

β”œβ”€β”€ README.md # Dataset Card: Dark-themed Markdown with emojis, tabs, and full project description

β”œβ”€β”€ index.html # Web App: Bootstrap HTML for dark GUI

β”œβ”€β”€ styles.css # Web App: Custom CSS for dark theme

β”œβ”€β”€ script.js # Web App: JavaScript to load and display dataset

β”œβ”€β”€ requirements.txt # Dependencies: Python libraries for upload

data.csv

""" index,text,label 1,"This app is absolutely amazing! 🌟","positive" 2,"The service was terrible, never again. 😞","negative" 3,"Love the new features, so intuitive! πŸš€","positive" 4,"Really disappointed with the quality. πŸ˜•","negative" 5,"Best experience ever, highly recommend! πŸŽ‰","positive" """

README.md

"""

dataset_info: features: - name: index dtype: int64 - name: text dtype: string - name: label dtype: string splits: - name: train num_examples: 4 - name: test num_examples: 1 download_size: 2000 dataset_size: 2000 license: apache-2.0 task_categories: - text-classification tags: - sentiment-analysis - text - nlp - emoji pretty_name: SentimentSpark language: - en

πŸŒ‘ SentimentSpark: Ignite Your NLP Journey πŸ”₯

Welcome to SentimentSpark!
This dataset lights up your sentiment analysis projects with a sleek, emoji-rich collection of text reviews. Designed for researchers, developers, and NLP enthusiasts, SentimentSpark is a compact, high-quality dataset for training and evaluating text classification models. πŸš€


🌟 Project Overview

SentimentSpark is a professionally curated dataset for sentiment analysis, featuring indexed text reviews with positive or negative labels. Paired with a dark-themed web app, it offers a modern, engaging resource for prototyping, education, or benchmarking. Hosted on the Hugging Face Hub, it includes a dataset repository and a Space for interactive visualization. All files are stored in the root directory for simplicity. 🌍


πŸ“Š Dataset Structure

πŸ“‹ Data Instances

Each instance includes an index, a text review, and a sentiment label. Example:

{
  "index": 1,
  "text": "This app is absolutely amazing! 🌟",
  "label": "positive"
}