AshtonIsNotHere's picture
Update README.md
185fc41
|
raw
history blame
630 Bytes
---
language:
- en
tags:
- medical
---
### 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 = AutoModelForQuestionAnswering.from_pretrained(
model_name
)
```