README.md 1.11 KB
Newer Older
1
2
3
4
---
language:
- es
- en
5
datasets:
6
- lince
Julien Chaumond's avatar
Julien Chaumond committed
7
license: mit
8
9
10
11
tags:
- codeswitching
- spanish-english
- language-identification
12
13
14
15
16
---

# codeswitch-spaeng-lid-lince
This is a pretrained model for **language identification** of `spanish-english` code-mixed data used from [LinCE](https://ritual.uh.edu/lince/home)

17
18
19
20
21
22
23
24
25
This model is trained for this below repository. 

[https://github.com/sagorbrur/codeswitch](https://github.com/sagorbrur/codeswitch)

To install codeswitch:

```
pip install codeswitch
```
26

27
28
## Identify Language

29
* **Method-1**
30
31
32

```py

33
from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline
34
35
36
37
38
39
40
41
42
43

tokenizer = AutoTokenizer.from_pretrained("sagorsarker/codeswitch-spaeng-lid-lince")

model = AutoModelForTokenClassification.from_pretrained("sagorsarker/codeswitch-spaeng-lid-lince")
lid_model = pipeline('ner', model=model, tokenizer=tokenizer)

lid_model("put any spanish english code-mixed sentence")

```

44
* **Method-2**
45
46
47
48
49
50
51
52

```py
from codeswitch.codeswitch import LanguageIdentification
lid = LanguageIdentification('spa-eng') 
text = "" # your code-mixed sentence 
result = lid.identify(text)
print(result)
```