Edit model card

NumFa 3B 1 epoch

NumFa 3B 1 epoch is the first epoch of NumFa 3B model. (checkpoint2)

Base model: openllama3b

For testing only

Model Details

Model Description

The model was trained by TPU.

This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.

  • Developed by: NumFa
  • Model type: text-generation
  • Language(s) (NLP): English
  • License: apache-2.0

Out-of-Scope Use

Math, Coding, and other language

Bias, Risks, and Limitations

The model can has a bias from dataset. Use at your own risks!

How to Get Started with the Model

Use the code below to get started with the model.

Example

# !pip install accelerate sentencepiece transformers bitsandbytes
import torch
from transformers import pipeline

pipe = pipeline("text-generation", model="numfa_3b_1epoch", torch_dtype=torch.bfloat16, device_map="auto")

# We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating

outputs = pipe("test is", max_new_tokens=300, do_sample=True, temperature=0.9, top_k=50, top_p=0.95, no_repeat_ngram_size=2,typical_p=1.)
print(outputs[0]["generated_text"])
Downloads last month
1,199
Safetensors
Model size
3.63B params
Tensor type
FP16
·