File size: 979 Bytes
8f1f3d1 e5e2c3b 434255c 8f1f3d1 185fc41 8b843e6 185fc41 5454ef0 185fc41 e5e2c3b |
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
tags:
- medical
pipeline_tag: fill-mask
widget:
- text: "This research study is studying a combination of drugs as a possible treatment for metastatic triple-negative [MASK] cancer."
example_title: "Trial Summary"
- test: "Participants must have histologically or cytologically confirmed invasive breast cancer, with metastatic [MASK]."
example_title: "Inclsusion Criteria"
---
### GatorTron-OG-breast-cancer
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:
- study is an interventional trial
- study status is listed as completed
```python
from transformers import AutoModel, AutoTokenizer
model_name = "AshtonIsNotHere/GatorTron-OG-breast-cancer"
tokenizer = AutoTokenizer.from_pretrained(
model_name,
padding="max_length",
truncation=True,
)
model = AutoModelForMaskedLM.from_pretrained(
model_name
)
``` |