Transformers How to use nagayama0706/coding_model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="nagayama0706/coding_model") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("nagayama0706/coding_model")
model = AutoModelForCausalLM.from_pretrained("nagayama0706/coding_model")