File size: 607 Bytes
c769b40
 
 
dd41067
c769b40
 
 
c1fb75b
 
 
 
 
c769b40
 
6337b65
 
 
 
 
eef9733
6337b65
 
 
 
 
 
 
 
 
 
 
 
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
---
language: en
datasets:
- wnut_17
license: mit
metrics:
  - f1
widget:
  - text: "My name is Sylvain and I live in Paris"
    example_title: "Parisian"
  - text: "My name is Sarah and I live in London"
    example_title: "Londoner"
---

# Reddit NER for place names


## Use in `transformers`

```python
from transformers import pipeline

generator = pipeline(
    task="ner",
    model="cjber/reddit-ner-place_names",
    tokenizer="cjber/reddit-ner-place_names",
)

generator(
    "I live in Gothenburg, and long queues aside I definitely prefer the housing situation here compared to Edinburgh."
)
```