How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="David003/BELLE_LLaMA_7B_2M_enc_decrypted")
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("David003/BELLE_LLaMA_7B_2M_enc_decrypted")
model = AutoModelForCausalLM.from_pretrained("David003/BELLE_LLaMA_7B_2M_enc_decrypted")
Quick Links

decrypt the BELLE_LLaMA_7B_2M_enc model to help developers use it more easily.

Downloads last month
5
Inference Providers NEW