vortex-3b-v2 / README.md
Aarifkhan's picture
Create README.md
55c7591 verified
|
raw
history blame
No virus
1.89 kB
metadata
language:
  - en
license: other
tags:
  - HelpingAI
  - vortex
datasets:
  - OEvortex/uncensored-vortex
license_name: hsul
license_link: https://huggingface.co/OEvortex/vortex-3b/raw/main/LICENSE.md
pipeline_tag: text-generation

Vortex 3b Model Overview

vortex-3b is a 2.78 billion parameter causal language model created by OEvortex that is derived from EleutherAI's Pythia-2.8b and fine-tuned on Vortex-50k dataset'

from transformers import pipeline

# Initialize the pipeline
pipe = pipeline("text-generation", model="OEvortex/vortex-3b")

# Use the pipeline
text = "Once upon a time"
generated_text = pipe(text, max_length=100, do_sample=True)[0]['generated_text']

print(generated_text)