Update readme
Browse files
README.md
CHANGED
@@ -1,3 +1,34 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
2 |
license: mit
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
tags:
|
3 |
+
- text-classification
|
4 |
+
widget:
|
5 |
+
- text: "gdje mogu staviti paket?"
|
6 |
license: mit
|
7 |
+
language: en
|
8 |
---
|
9 |
+
|
10 |
+
# Multi2ConvAI-Logistics: finetuned Bert for Croatian
|
11 |
+
|
12 |
+
This model was developed in the [Multi2ConvAI](https://multi2conv.ai) project:
|
13 |
+
- domain: Logistics (more details about our use cases: ([en](https://multi2convai/en/blog/use-cases), [de](https://multi2convai/en/blog/use-cases)))
|
14 |
+
- language: Croatian (hr)
|
15 |
+
- model type: finetuned Bert
|
16 |
+
|
17 |
+
## How to run
|
18 |
+
|
19 |
+
Requires:
|
20 |
+
- Huggingface transformers
|
21 |
+
|
22 |
+
### Run with Huggingface Transformers
|
23 |
+
|
24 |
+
````python
|
25 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
26 |
+
|
27 |
+
tokenizer = AutoTokenizer.from_pretrained("inovex/multi2convai-logistics-hr-bert")
|
28 |
+
model = AutoModelForSequenceClassification.from_pretrained("inovex/multi2convai-logistics-hr-bert")
|
29 |
+
````
|
30 |
+
|
31 |
+
## Further information on Multi2ConvAI:
|
32 |
+
- https://multi2conv.ai
|
33 |
+
- https://github.com/inovex/multi2convai
|
34 |
+
- mailto: info@multi2conv.ai
|