Update README.md
Browse files
README.md
CHANGED
@@ -1,6 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# PatentBERT - PyTorch
|
2 |
|
3 |
-
BERT model specialized for patent classification using the **real CPC (Cooperative Patent Classification) system
|
4 |
|
5 |
## π Specifications
|
6 |
|
@@ -85,3 +92,13 @@ This model was trained on a large patent corpus to automatically classify docume
|
|
85 |
## π Citation
|
86 |
|
87 |
If you use this model, please cite the original PatentBERT work and mention this PyTorch conversion.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: gpl-3.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
base_model:
|
6 |
+
- google-bert/bert-base-uncased
|
7 |
+
---
|
8 |
# PatentBERT - PyTorch
|
9 |
|
10 |
+
BERT model specialized for patent classification using the **real CPC (Cooperative Patent Classification) system**. (PyTorch version of the original [PatentBert](https://github.com/jiehsheng/PatentBERT/) model.)
|
11 |
|
12 |
## π Specifications
|
13 |
|
|
|
92 |
## π Citation
|
93 |
|
94 |
If you use this model, please cite the original PatentBERT work and mention this PyTorch conversion.
|
95 |
+
```
|
96 |
+
@article{patent_bert,
|
97 |
+
author = "Jieh-Sheng Lee and Jieh Hsiang",
|
98 |
+
title = "{PatentBERT: Patent classification with fine-tuning a pre-trained BERT model}",
|
99 |
+
journal = "World Patent Information",
|
100 |
+
volume = "61",
|
101 |
+
number = "101965",
|
102 |
+
year = "2020",
|
103 |
+
}
|
104 |
+
```
|