File size: 794 Bytes
95fbf90
91a5076
95fbf90
91a5076
 
95fbf90
 
91a5076
95fbf90
 
91a5076
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
title: StockPro Sentiment
emoji: 📊
colorFrom: green
colorTo: blue
sdk: docker
pinned: false
app_port: 7860
---

# StockPro Sentiment API

Free open-source news sentiment analysis for Indonesian stock headlines.

Uses `lxyuan/distilbert-base-multilingual-cased-sentiments-student` — a lightweight multilingual DistilBERT model that classifies text as **positive**, **negative**, or **neutral**.

## API

### `POST /predict`

```json
// Request
{ "texts": ["BBCA cetak laba bersih Rp50 triliun", "GOTO rugi Rp10 triliun"] }

// Response
{
  "results": [
    { "text": "BBCA cetak laba bersih Rp50 triliun", "sentiment": "positive", "score": 0.87 },
    { "text": "GOTO rugi Rp10 triliun", "sentiment": "negative", "score": 0.83 }
  ]
}
```

### `GET /health`

Returns model load status.