Update README.md
Browse files
README.md
CHANGED
@@ -11,13 +11,13 @@ This Hugging Face repository contains a fine-tuned DistilBERT model for sentimen
|
|
11 |
## Model Details
|
12 |
|
13 |
- **Model Architecture**: Fine-tuned DistilBERT
|
14 |
-
- **Sentiment Categories**:
|
15 |
- **Input Format**: Text-based clothing reviews
|
16 |
- **Output Format**: Sentiment category labels
|
17 |
|
18 |
## Usage
|
19 |
|
20 |
-
|
21 |
|
22 |
To use this model, you'll need to install the Hugging Face Transformers library and any additional dependencies.
|
23 |
|
@@ -25,6 +25,9 @@ To use this model, you'll need to install the Hugging Face Transformers library
|
|
25 |
pip install transformers
|
26 |
pip install torch
|
27 |
|
28 |
-
##
|
29 |
-
You can easily load the pre-trained model for sentiment analysis using Hugging Face's
|
|
|
|
|
|
|
30 |
|
|
|
11 |
## Model Details
|
12 |
|
13 |
- **Model Architecture**: Fine-tuned DistilBERT
|
14 |
+
- **Sentiment Categories**: Neutral[0], Negative[1], Positive[2]
|
15 |
- **Input Format**: Text-based clothing reviews
|
16 |
- **Output Format**: Sentiment category labels
|
17 |
|
18 |
## Usage
|
19 |
|
20 |
+
## Installation
|
21 |
|
22 |
To use this model, you'll need to install the Hugging Face Transformers library and any additional dependencies.
|
23 |
|
|
|
25 |
pip install transformers
|
26 |
pip install torch
|
27 |
|
28 |
+
## Usage
|
29 |
+
You can easily load the pre-trained model for sentiment analysis using Hugging Face's DistilBertForSequenceClassification and DistilBertTokenizerFast.
|
30 |
+
```bash
|
31 |
+
pip install transformers
|
32 |
+
pip install torch
|
33 |
|