Text Classification
Transformers
Safetensors
English
distilbert
steam
video games
text-embeddings-inference
Instructions to use tjkeay/Distilbert_Steam_Sentiment_Small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tjkeay/Distilbert_Steam_Sentiment_Small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="tjkeay/Distilbert_Steam_Sentiment_Small")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("tjkeay/Distilbert_Steam_Sentiment_Small") model = AutoModelForSequenceClassification.from_pretrained("tjkeay/Distilbert_Steam_Sentiment_Small", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,9 +5,8 @@ tags: []
|
|
| 5 |
|
| 6 |
# Model Card for Model ID
|
| 7 |
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
|
| 12 |
## Model Details
|
| 13 |
|
|
@@ -17,21 +16,18 @@ tags: []
|
|
| 17 |
|
| 18 |
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
|
| 19 |
|
| 20 |
-
- **Developed by:**
|
| 21 |
-
- **
|
| 22 |
-
- **
|
| 23 |
-
- **
|
| 24 |
-
- **
|
| 25 |
-
- **License:** [More Information Needed]
|
| 26 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
| 27 |
|
| 28 |
### Model Sources [optional]
|
| 29 |
|
| 30 |
<!-- Provide the basic links for the model. -->
|
| 31 |
|
| 32 |
-
- **
|
| 33 |
-
- **
|
| 34 |
-
- **Demo [optional]:** [More Information Needed]
|
| 35 |
|
| 36 |
## Uses
|
| 37 |
|
|
|
|
| 5 |
|
| 6 |
# Model Card for Model ID
|
| 7 |
|
| 8 |
+
This is a fine-tuned version of the distilbert/distilbert-base-uncased model trained on the SebastianHops/steam-reviews-english dataset.
|
| 9 |
+
It was made for the purpose of simple sentiment analysis, particularly of video game reviews.
|
|
|
|
| 10 |
|
| 11 |
## Model Details
|
| 12 |
|
|
|
|
| 16 |
|
| 17 |
This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
|
| 18 |
|
| 19 |
+
- **Developed by:** Trevor Keay
|
| 20 |
+
- **Model type:** Custom-tuned Transformer
|
| 21 |
+
- **Language(s) (NLP):** Python
|
| 22 |
+
- **License:** Apache License 2.0
|
| 23 |
+
- **Finetuned from model [optional]:** distilbert/distilbert-base-uncased
|
|
|
|
|
|
|
| 24 |
|
| 25 |
### Model Sources [optional]
|
| 26 |
|
| 27 |
<!-- Provide the basic links for the model. -->
|
| 28 |
|
| 29 |
+
- **Base Model** https://huggingface.co/distilbert/distilbert-base-uncased
|
| 30 |
+
- **Training Data** https://huggingface.co/datasets/SebastianHops/steam-reviews-english
|
|
|
|
| 31 |
|
| 32 |
## Uses
|
| 33 |
|