Instructions to use allenai/scibert_scivocab_cased with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use allenai/scibert_scivocab_cased with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("allenai/scibert_scivocab_cased", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Information on casing/uncasing in config.json
#2
by lfoppiano - opened
Hi,
I'm facing the problem that when I try to use the scibert_scivocab_cased or scibert_scivocab_uncased there is no information about the low_case. It shoudl be something like "do_lower_case: True/False" in the configuration file.
What's the typical use case? Do you just hardcode such parameter or I'm overlooking something?
Thank you