seanfarrell
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -6,16 +6,22 @@ pipeline_tag: fill-mask
|
|
6 |
tags:
|
7 |
- biology
|
8 |
- medical
|
|
|
|
|
9 |
widget:
|
10 |
-
- text:
|
11 |
-
|
12 |
-
|
13 |
-
example_title:
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
---
|
15 |
|
16 |
|
17 |
-
|
18 |
-
|
19 |
# PetBERT
|
20 |
|
21 |
PetBERT is a masked language model based on the BERT architecture further trained on over 500 million additional words from first-opinion veterinary clinicians from across the UK
|
@@ -42,7 +48,7 @@ from transformers import AutoTokenizer, AutoModelForMaskedLM
|
|
42 |
tokenizer = AutoTokenizer.from_pretrained("SAVSNET/PetBERT")
|
43 |
model = AutoModelForMaskedLM.from_pretrained("SAVSNET/PetBERT")
|
44 |
|
45 |
-
|
46 |
PetBERT('Suspected pneuomina, will require an [MASK] but in the meantime will prescribed antibiotics')
|
47 |
|
48 |
```
|
@@ -123,5 +129,4 @@ Adaption of the ULMFiT framework was utilised in the production of ‘PetBERT’
|
|
123 |
This work would not have been possible without the contribution of practicing vets across the UK contributing to the SAVSNET project and without the help and support of the SAVSNET core team comprising Bethaney Brant, Steve Smyth and Gina Pinchbeck.
|
124 |
|
125 |
|
126 |
-
![alt text](Screenshot%20from%202023-12-13%2012-01-53.png)
|
127 |
-
|
|
|
6 |
tags:
|
7 |
- biology
|
8 |
- medical
|
9 |
+
- veterinary
|
10 |
+
- clinical
|
11 |
widget:
|
12 |
+
- text: >-
|
13 |
+
poc all well. wound healed. No [MASK] on exam. Microchip working. Sign off,
|
14 |
+
resee if worried.
|
15 |
+
example_title: Post operative Checkup
|
16 |
+
- text: >-
|
17 |
+
other 2 degu's unwell recently want health check for this one appears well
|
18 |
+
for age blood [MASK] 3.8. offer to reweigh and monitor weight
|
19 |
+
example_title: Blood Glucose check
|
20 |
+
base_model:
|
21 |
+
- google-bert/bert-base-uncased
|
22 |
---
|
23 |
|
24 |
|
|
|
|
|
25 |
# PetBERT
|
26 |
|
27 |
PetBERT is a masked language model based on the BERT architecture further trained on over 500 million additional words from first-opinion veterinary clinicians from across the UK
|
|
|
48 |
tokenizer = AutoTokenizer.from_pretrained("SAVSNET/PetBERT")
|
49 |
model = AutoModelForMaskedLM.from_pretrained("SAVSNET/PetBERT")
|
50 |
|
51 |
+
PetBERT = pipeline("fill-mask", model=model, tokenizer=tokenizer)
|
52 |
PetBERT('Suspected pneuomina, will require an [MASK] but in the meantime will prescribed antibiotics')
|
53 |
|
54 |
```
|
|
|
129 |
This work would not have been possible without the contribution of practicing vets across the UK contributing to the SAVSNET project and without the help and support of the SAVSNET core team comprising Bethaney Brant, Steve Smyth and Gina Pinchbeck.
|
130 |
|
131 |
|
132 |
+
![alt text](Screenshot%20from%202023-12-13%2012-01-53.png)
|
|