Downloads · 30 days
5
9% of all-time downloads
quickstep3621/dippy-g2-1-9-2
dippy-g2-1-9-2 is a text generation model from quickstep3621. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as gemma.
Downloads · 30 days
5
9% of all-time downloads
All-time downloads
56
Public
Parameters
27.4B
110 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors54.9 GB · 100%
From the Hugging Face model README

Bifröst-27B is an advanced AI model built upon gemma3 architecture, specifically fine-tuned for secure and efficient enterprise-grade code generation with reasoning. Designed to meet rigorous standards of safety, accuracy, and reliability, Bifröst empowers organizations to streamline software development workflows while prioritizing security and compliance.
Bifröst is designed explicitly for:
Below are some quick-start instructions for using the model with the transformers library.
$ pip install git+https://github.com/huggingface/transformers@v4.49.0-Gemma-3
pipeline APIfrom transformers import pipeline
import torch
pipe = pipeline(
"text-generation",
model="OpenGenerativeAI/Bifrost-27B",
device="cuda",
torch_dtype=torch.bfloat16
)
messages = [{"role": "user", "content": "Generate a secure API key management system."}]
output = pipe(text=messages, max_new_tokens=200)
print(output[0]["generated_text"])
This model is released under the Gemma license. Users must comply with Google's Gemma Terms of Use, including restrictions on redistribution, modification, and commercial use.