Downloads · 30 days
192
5% of all-time downloads
Linly-AI/Chinese-Falcon-7B
Chinese-Falcon-7B is a text generation model from Linly-AI. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
Training details: https://github.com/CVI-SZU/Linly
Downloads · 30 days
192
5% of all-time downloads
All-time downloads
3.5K
Public
Repo size
29.8 GB
Likes
29
Public
Click a slice to open those files.
.bin14.9 GB · 100%
From the Hugging Face model README
Training details: https://github.com/CVI-SZU/Linly
from transformers import AutoTokenizer, AutoModelForCausalLM
import transformers
import torch
model = "Linly-AI/Chinese-Falcon-7B"
tokenizer = AutoTokenizer.from_pretrained(model)
pipeline = transformers.pipeline(
"text-generation",
model=model,
tokenizer=tokenizer,
torch_dtype=torch.bfloat16,
trust_remote_code=True,
device_map="auto",
)
sequences = pipeline(
"User: 你如何看待996?\nBot: 我认为996制度是一种不可取的工作时间安排,因为这会导致员工过多的劳累和身心健康问题。此外,如果公司想要提高生产效率,应该采用更有效的管理方式,而不是通过强行加大工作量来达到目的。\nUser: 那么你有什么建议?\nBot:",
max_length=200,
do_sample=True,
top_k=10,
num_return_sequences=1,
eos_token_id=tokenizer.eos_token_id,
)
for seq in sequences:
print(f"Result: {seq['generated_text']}")