Instructions to use startlingadama/fistmodel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Adapters
How to use startlingadama/fistmodel with Adapters:
from adapters import AutoAdapterModel model = AutoAdapterModel.from_pretrained("undefined") model.load_adapter("startlingadama/fistmodel", set_active=True) - Notebooks
- Google Colab
- Kaggle
| m transformers import AutoTokenizer | |
| tokenizer = AutoTokenizer.from_pretrained("bert-base-uncased") | |
| inputs = tokenizer("Adama Coulibaly, a new hugging face developpeur independant") | |
| print(inputs["input_ids"]) | |