Question Answering
Transformers
TensorBoard
Safetensors
gemma
text-generation
trl
sft
Generated from Trainer
text-generation-inference
Instructions to use IvanD2002/gemma-chatbot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use IvanD2002/gemma-chatbot with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="IvanD2002/gemma-chatbot")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("IvanD2002/gemma-chatbot") model = AutoModelForCausalLM.from_pretrained("IvanD2002/gemma-chatbot") - Notebooks
- Google Colab
- Kaggle