HuggingFaceFW/fineweb
Viewer • Updated • 52.5B • 946k • 2.8k
Zenyx-Vanta is a modernized Bidirectional Encoder (BERT-style) model. This iteration uses the Omni-Mix dataset strategy, designed to provide the encoder with a balance of high-quality educational text, general web knowledge, Pythonic logic, and mathematical reasoning.
Vanta was trained on a balanced 4-way distribution to maximize cross-domain reasoning:
| Parameter | Value |
|---|---|
hidden_size |
768 |
num_hidden_layers |
12 |
num_attention_heads |
12 |
num_key_value_heads |
4 |
intermediate_size |
3072 |
max_position_embeddings |
2048 |
hidden_act |
SwiGLU (SiLU) |
To use Zenyx-Vanta for mask filling, you can use the following snippet (requires jax, flax, and transformers):
from transformers import AutoTokenizer
import jax.numpy as jnp
# Note: Ensure your local ZenyxVanta architecture definition matches the model weights
# model = ZenyxVanta(vocab_size=151646)
tokenizer = AutoTokenizer.from_pretrained("Arko007/zenyx-vanta-bert")
text = "The powerhouse of the cell is the ___."
prompt = text.replace("___", "<|MASK|>")
inputs = tokenizer(prompt, return_tensors="np")
# logits = model.apply({'params': params}, inputs['input_ids'])
# ... (Standard JAX inference logic)
Developed by Arko007 and the Zenyx team.