finetuned

finetuned is an SFT fine-tuned version of EleutherAI/gpt-neo-2.7B using a custom training dataset. This model was made with Phinetune

Process

  • Learning Rate: 0.0001
  • Maximum Sequence Length: 2048
  • Dataset: Striker-7/mattxt
  • Split: train

馃捇 Usage

!pip install -qU transformers
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline

model = "Striker-7/finetuned"
tokenizer = AutoTokenizer.from_pretrained(model)

# Example prompt
prompt = "Your example prompt here"

# Generate a response
model = AutoModelForCausalLM.from_pretrained(model)
pipeline = pipeline("text-generation", model=model, tokenizer=tokenizer)
outputs = pipeline(prompt, max_length=50, num_return_sequences=1)
print(outputs[0]["generated_text"])
Downloads last month
2
Safetensors
Model size
1.45B params
Tensor type
F32
BF16
U8
Inference Providers NEW
This model is not currently available via any of the supported third-party Inference Providers, and the model is not deployed on the HF Inference API.