GatorTron-OG-breast-cancer
GatorTron-OG domain adapted on a set of breast cancer studies from the U.S. National Library of Medicine meeting the following criteria:
- study is an interventional trial
- study status is listed as completed
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
)
- Downloads last month
- 32
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.