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

  1. Phase 1 (VAE/Latent Encoder): phase1_vae_step_20000.pth
    • Responsible for shaping the spherical latent space (Spherical Topology, F.normalize) and initial compression.
  2. Phase 2 (Latent Decoder): phase2_decoder_step_9000.pth
    • Initialized from ModernBERT-large. Decodes latent representations back into raw text.
  3. 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.
  4. Separator Token: sep_token.pt
    • A custom separator embedding tensor. Initially designed to pass t onto the canvas before switching to AdaLN. Preserved for potential future utility.

πŸš€ 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.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for bulyakovbr/bebladii-foundation-weights

Finetuned
(350)
this model