BEBLaDII Foundation Weights (Phases 1-3)
This repository contains the foundation weights for the first three training phases of the experimental BEBLaDII architecture. (Git Repository: github.com/Laeryid/BEBLaDII) These weights are intended for further training (Phase 4 and beyond) and are not a standalone, chat-ready LLM.
π¦ Checkpoints Included
- Phase 1 (VAE/Latent Encoder):
phase1_vae_step_20000.pth- Responsible for shaping the spherical latent space (Spherical Topology,
F.normalize) and initial compression.
- Responsible for shaping the spherical latent space (Spherical Topology,
- Phase 2 (Latent Decoder):
phase2_decoder_step_9000.pth- Initialized from ModernBERT-large. Decodes latent representations back into raw text.
- Phase 3 (Canonical Diffusion / DUS):
phase3_diffusion_step_17995.pth- Continuous diffusion model on a sphere using AdaLN and UNet-style skip-connections. Provides Depth Up-Scaling (DUS) capabilities.
- Separator Token:
sep_token.pt- A custom separator embedding tensor. Initially designed to pass
tonto the canvas before switching to AdaLN. Preserved for potential future utility.
- A custom separator embedding tensor. Initially designed to pass
π Usage
These weights are designed to be loaded into the respective modules of the BEBLaDII framework. Example of loading weights in PyTorch:
import torch
from huggingface_hub import hf_hub_download
# Example: Loading the diffusion component
file_path = hf_hub_download(repo_id="YOUR_USERNAME/bebladii-foundation-weights", filename="phase3_diffusion_step_17995.pth")
state_dict = torch.load(file_path, map_location="cpu")
# model.load_state_dict(state_dict)
βοΈ License and Attribution
This project is licensed under Apache 2.0. The architecture incorporates concepts and base weight initializations from the ModernBERT and DeepSeek model families.
Inference Providers NEW
This model isn't deployed by any Inference Provider. π Ask for provider support
Model tree for bulyakovbr/bebladii-foundation-weights
Base model
answerdotai/ModernBERT-large