Transformers How to use DataHammer/mozi_baichuan_7b with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="DataHammer/mozi_baichuan_7b") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("DataHammer/mozi_baichuan_7b", dtype="auto")