Instructions to use HenryAI/KerasBERTv1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HenryAI/KerasBERTv1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="HenryAI/KerasBERTv1")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("HenryAI/KerasBERTv1") model = AutoModelForMaskedLM.from_pretrained("HenryAI/KerasBERTv1") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
-
Thanks for checking this out!
|
| 2 |
This video explains the ideas behind KerasBERT (still very much a work in progress)
|
| 3 |
https://www.youtube.com/watch?v=J3P8WLAELqk
|
|
|
|
| 1 |
+
Thanks for checking this out! <br />
|
| 2 |
This video explains the ideas behind KerasBERT (still very much a work in progress)
|
| 3 |
https://www.youtube.com/watch?v=J3P8WLAELqk
|