Instructions to use abvijaykumar/finetuned-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use abvijaykumar/finetuned-model with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("openai-community/gpt2-medium") model = PeftModel.from_pretrained(base_model, "abvijaykumar/finetuned-model") - Notebooks
- Google Colab
- Kaggle