Instructions to use balzanilo/UMLSBert_ENG with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use balzanilo/UMLSBert_ENG with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="balzanilo/UMLSBert_ENG")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("balzanilo/UMLSBert_ENG") model = AutoModel.from_pretrained("balzanilo/UMLSBert_ENG") - Notebooks
- Google Colab
- Kaggle
Create .gitignore
Browse files- .gitignore +5 -0
.gitignore
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.ipynb_checkpoints/
|
| 2 |
+
**/.bashrc
|
| 3 |
+
.DS_Store
|
| 4 |
+
**/__pycache__/
|
| 5 |
+
.idea/
|