Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
datasets:
|
5 |
+
- pubmed
|
6 |
+
---
|
7 |
+
|
8 |
+
## ProcBERT
|
9 |
+
|
10 |
+
|
11 |
+
## Usage
|
12 |
+
```
|
13 |
+
from transformers import *
|
14 |
+
tokenizer = BertTokenizer.from_pretrained("fbaigt/procbert")
|
15 |
+
model = BertForTokenClassification.from_pretrained("fbaigt/procbert")
|
16 |
+
```
|
17 |
+
|
18 |
+
More usage details can be found [here](https://github.com/bflashcp3f/ProcBERT).
|