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