Edit model card

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

This is a beginner's test model.

from transformers import AutoTokenizer, AutoModelForCausalLM
import transformers
import torch
modelName='MingZhuang/mz_model_merged'
model = AutoModelForCausalLM.from_pretrained(modelName)
tokenizer = AutoTokenizer.from_pretrained(modelName)
generate = transformers.pipeline(
    "text-generation",
    model=model,
    tokenizer=tokenizer,
)

Result = generate(
    "</s>Human: How can I find a girlfriend?<s> Assistant:",
    max_new_tokens=120
)
Result
Downloads last month
0
Safetensors
Model size
325M params
Tensor type
F32
·

Dataset used to train MZ01/mz_model_merged