Spaces:
Running
Running
File size: 3,118 Bytes
c69ac98 c61b2c1 1471d28 ed392ff 1471d28 ed392ff 1471d28 ed392ff 1471d28 ed392ff 1471d28 ed392ff 1471d28 c61b2c1 1471d28 c61b2c1 1471d28 c61b2c1 1471d28 ed392ff 1471d28 ed392ff c69ac98 1471d28 ed392ff 1471d28 ed392ff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
---
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. π
- **Homepage**: [https://huggingface.co/datasets/your-username/SentimentSpark](https://huggingface.co/datasets/your-username/SentimentSpark)
- **Repository**: [https://huggingface.co/datasets/your-username/SentimentSpark](https://huggingface.co/datasets/your-username/SentimentSpark)
- **Space**: [https://huggingface.co/spaces/your-username/SentimentSpark-App](https://huggingface.co/spaces/your-username/SentimentSpark-App)
- **License**: Apache-2.0 π
- **Task**: Text Classification (Sentiment Analysis)
- **Language**: English π¬π§
- **Point of Contact**: [Your Name or Email]
---
## π Dataset Structure
### π Data Instances
Each instance includes an index, a text review, and a sentiment label. Example:
```json
{
"index": 1,
"text": "This app is absolutely amazing! π",
"label": "positive"
} |