Kroalist commited on
Commit
005ef5e
·
verified ·
1 Parent(s): d07a749

Fix pipeline_tag → text-classification; update README

Browse files
Files changed (1) hide show
  1. README.md +9 -16
README.md CHANGED
@@ -3,32 +3,25 @@ language:
3
  - en
4
  license: apache-2.0
5
  library_name: transformers
6
- pipeline_tag: sentiment-analysis
7
  datasets:
8
  - financial_phrase_bank
9
  base_model: ProsusAI/finbert
10
  tags:
 
11
  - finance
12
- - sentiment
13
- - sentiment-analysis
14
  - finbert
15
  - text-classification
16
  ---
17
- # Financial Sentiment BERT (ProsusAI/FinBERT fine-tune)
18
 
19
- A sentence-level sentiment classifier for **English financial news**.
20
 
21
- | Item | Value |
22
- |------|-------|
23
- | **Base model** | `ProsusAI/finbert` |
24
- | **Dataset** | Financial PhraseBank |
25
- | **Classes** | 0 = positive, 1 = negative, 2 = neutral |
26
- | **Epochs** | 6 |
27
- | **Optimizer / LR** | AdamW / 2 × 10⁻⁵ |
28
- | **Hardware** | CPU-only training |
29
-
30
- ## Intended use
31
- Quick tagging of news headlines, earnings snippets or analyst notes to feed dashboards or trading-signal pipelines.
32
 
33
  ## Usage
34
 
 
3
  - en
4
  license: apache-2.0
5
  library_name: transformers
6
+ pipeline_tag: text-classification # ✅ valid task ID
7
  datasets:
8
  - financial_phrase_bank
9
  base_model: ProsusAI/finbert
10
  tags:
11
+ - sentiment-analysis # free-form tag
12
  - finance
 
 
13
  - finbert
14
  - text-classification
15
  ---
16
+ # Financial Sentiment BERT (FinBERT fine-tune)
17
 
18
+ Sentence-level classifier for **English financial news**.
19
 
20
+ * **Base model**: ProsusAI/finbert
21
+ * **Dataset** : Financial PhraseBank
22
+ * **Labels** : positive (0) · negative (1) · neutral (2)
23
+ * **Epochs** : 6 (AdamW, lr = 2e-5)
24
+ * **Hardware** : CPU-only training
 
 
 
 
 
 
25
 
26
  ## Usage
27