ongaunjie commited on
Commit
69a8f3d
1 Parent(s): 422036f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -4
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**: Positive, Negative, Neutral
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,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
- ## Model Loading
29
- You can easily load the pre-trained model for sentiment analysis using Hugging Face's AutoModelForSequenceClassification.
 
 
 
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