AshtonIsNotHere commited on
Commit
185fc41
1 Parent(s): 8f1f3d1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -2
README.md CHANGED
@@ -1,11 +1,26 @@
1
  ---
2
  language:
3
  - en
4
- library_name: nemo
5
  tags:
6
  - medical
7
  ---
8
 
9
  ### GatorTron-OG-breast-cancer
10
 
11
- GatorTron-OG domain adapted on a set of breast cancer clinic trial reports pulled from ctr.gov.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  language:
3
  - en
 
4
  tags:
5
  - medical
6
  ---
7
 
8
  ### GatorTron-OG-breast-cancer
9
 
10
+ GatorTron-OG domain adapted on a set of breast cancer studies from [the U.S. National Library of Medicine](https://clinicaltrials.gov/ct2/home) meeting the following criteria:
11
+ - study is an interventional trial
12
+ - study status is listed as completed
13
+
14
+ - ```python
15
+ from transformers import AutoModel, AutoTokenizer
16
+
17
+ model_name = "AshtonIsNotHere/GatorTron-OG-breast-cancer"
18
+ tokenizer = AutoTokenizer.from_pretrained(
19
+ model_name,
20
+ padding="max_length",
21
+ truncation=True,
22
+ )
23
+ model = AutoModelForQuestionAnswering.from_pretrained(
24
+ model_name
25
+ )
26
+ ```