Upload 2 files
Browse files- README.md +18 -6
- requirements.txt +4 -0
README.md
CHANGED
@@ -1,14 +1,26 @@
|
|
1 |
---
|
2 |
-
title: Steam Review Constructiveness Classifier
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.44.1
|
|
|
8 |
app_file: app.py
|
9 |
-
pinned:
|
10 |
license: mit
|
11 |
-
short_description:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
---
|
13 |
|
14 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: Steam Review Constructiveness Classifier
|
3 |
+
emoji: 🎮
|
4 |
+
colorFrom: blue
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.44.1
|
8 |
+
python: 3.10
|
9 |
app_file: app.py
|
10 |
+
pinned: true
|
11 |
license: mit
|
12 |
+
short_description: Classify Steam game-review constructiveness.
|
13 |
+
suggested_hardware: t4-small
|
14 |
+
suggested_storage: small
|
15 |
+
header: default
|
16 |
+
models: [abullard1/albert-v2-steam-review-constructiveness-classifier]
|
17 |
+
dataset: [abullard1/steam-reviews-constructiveness-binary-label-annotations-1.5k]
|
18 |
+
thumbnail: https://i.ibb.co/hVpP2FF/abullard1-steam-review-constructiveness-classifier-logo.webp
|
19 |
+
disable_embedding: false
|
20 |
+
startup_duration_timeout: 600
|
21 |
+
preload_from_hub:
|
22 |
+
- abullard1/albert-v2-steam-review-constructiveness-classifier
|
23 |
+
tags: [text-classification, steam, reviews, constructiveness, gaming, albert, bert, transformers, huggingface, spaces, classifier, constructive, non-constructive]
|
24 |
---
|
25 |
|
26 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
transformers
|
2 |
+
torch
|
3 |
+
gradio
|
4 |
+
accelerate
|