Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -8,6 +8,27 @@ pinned: false
|
|
8 |
license: apache-2.0
|
9 |
short_description: SentimentSpark
|
10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
---
|
12 |
dataset_info:
|
13 |
features:
|
@@ -44,12 +65,13 @@ This dataset lights up your sentiment analysis projects with a sleek, emoji-rich
|
|
44 |
|
45 |
---
|
46 |
|
47 |
-
## π Overview
|
48 |
|
49 |
-
*SentimentSpark* is a professionally curated dataset for **sentiment analysis**, featuring indexed text reviews with **positive** or **negative** labels.
|
50 |
|
51 |
- **Homepage**: [https://huggingface.co/datasets/your-username/SentimentSpark](https://huggingface.co/datasets/your-username/SentimentSpark)
|
52 |
- **Repository**: [https://huggingface.co/datasets/your-username/SentimentSpark](https://huggingface.co/datasets/your-username/SentimentSpark)
|
|
|
53 |
- **License**: Apache-2.0 π
|
54 |
- **Task**: Text Classification (Sentiment Analysis)
|
55 |
- **Language**: English π¬π§
|
|
|
8 |
license: apache-2.0
|
9 |
short_description: SentimentSpark
|
10 |
---
|
11 |
+
# File Tree
|
12 |
+
# SentimentSpark/
|
13 |
+
# βββ data.csv # Dataset: CSV with index, text, and label columns
|
14 |
+
# βββ README.md # Dataset Card: Dark-themed Markdown with emojis, tabs, and full project description
|
15 |
+
# βββ index.html # Web App: Bootstrap HTML for dark GUI
|
16 |
+
# βββ styles.css # Web App: Custom CSS for dark theme
|
17 |
+
# βββ script.js # Web App: JavaScript to load and display dataset
|
18 |
+
# βββ requirements.txt # Dependencies: Python libraries for upload
|
19 |
+
|
20 |
+
# data.csv
|
21 |
+
"""
|
22 |
+
index,text,label
|
23 |
+
1,"This app is absolutely amazing! π","positive"
|
24 |
+
2,"The service was terrible, never again. π","negative"
|
25 |
+
3,"Love the new features, so intuitive! π","positive"
|
26 |
+
4,"Really disappointed with the quality. π","negative"
|
27 |
+
5,"Best experience ever, highly recommend! π","positive"
|
28 |
+
"""
|
29 |
+
|
30 |
+
# README.md
|
31 |
+
"""
|
32 |
---
|
33 |
dataset_info:
|
34 |
features:
|
|
|
65 |
|
66 |
---
|
67 |
|
68 |
+
## π Project Overview
|
69 |
|
70 |
+
*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. π
|
71 |
|
72 |
- **Homepage**: [https://huggingface.co/datasets/your-username/SentimentSpark](https://huggingface.co/datasets/your-username/SentimentSpark)
|
73 |
- **Repository**: [https://huggingface.co/datasets/your-username/SentimentSpark](https://huggingface.co/datasets/your-username/SentimentSpark)
|
74 |
+
- **Space**: [https://huggingface.co/spaces/your-username/SentimentSpark-App](https://huggingface.co/spaces/your-username/SentimentSpark-App)
|
75 |
- **License**: Apache-2.0 π
|
76 |
- **Task**: Text Classification (Sentiment Analysis)
|
77 |
- **Language**: English π¬π§
|