--- license: other license_name: helpingai license_link: https://huggingface.co/OEvortex/vortex-3b/raw/main/LICENSE.md --- datasets: - OEvortex/Vortex-50k language: - en pipeline_tag: text-generation tags: - HelpingAI - vortex --- ![Vortex 3b](vortex%203b.png) **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' ```python 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) ```