CasperEriksen commited on
Commit
743db22
1 Parent(s): cbf3afb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -4,7 +4,7 @@ This model is [xlm-roberta-base](https://huggingface.co/xlm-roberta-base) fine-t
4
 
5
 
6
  ## Data
7
- The data used to fine-tune the model consist of 2.5 million descriptions of activities from Norwegian and Danish businesses. To improve the model's multilingual performance, random samples were machine translated into the following languages:
8
  - English
9
  - German
10
  - Spanish
@@ -17,8 +17,8 @@ The data used to fine-tune the model consist of 2.5 million descriptions of acti
17
  ```python
18
  from transformers import pipeline, AutoTokenizer, AutoModelForSequenceClassification
19
 
20
- tokenizer = AutoTokenizer.from_pretrained("erst/xlm-roberta-base-finetuned-db07")
21
- model = AutoModelForSequenceClassification.from_pretrained("erst/xlm-roberta-base-finetuned-db07")
22
 
23
  pl = pipeline(
24
  "sentiment-analysis",
 
4
 
5
 
6
  ## Data
7
+ The data used to fine-tune the model consist of 2.5 million descriptions of activities from Norwegian and Danish businesses. To improve the model's multilingual performance, random samples of the Norwegian and Danish descriptions were machine translated into the following languages:
8
  - English
9
  - German
10
  - Spanish
 
17
  ```python
18
  from transformers import pipeline, AutoTokenizer, AutoModelForSequenceClassification
19
 
20
+ tokenizer = AutoTokenizer.from_pretrained("erst/xlm-roberta-base-finetuned-nace")
21
+ model = AutoModelForSequenceClassification.from_pretrained("erst/xlm-roberta-base-finetuned-nace")
22
 
23
  pl = pipeline(
24
  "sentiment-analysis",