Instructions to use ncbi/MedCPT-Query-Encoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ncbi/MedCPT-Query-Encoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="ncbi/MedCPT-Query-Encoder")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("ncbi/MedCPT-Query-Encoder") model = AutoModel.from_pretrained("ncbi/MedCPT-Query-Encoder", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
File size: 74 Bytes
cda3e75 | 1 2 3 4 5 6 7 8 | {
"[CLS]": 2,
"[MASK]": 4,
"[PAD]": 0,
"[SEP]": 3,
"[UNK]": 1
}
|