AbstractPhil / geo-beatrix

huggingface.co
Total runs: 2
24-hour runs: 0
7-day runs: 1
30-day runs: 2
Model's Last Updated: October 11 2025
image-classification

Introduction of geo-beatrix

Model Details of geo-beatrix

geo-beatrix

Geometric Basin Classification for CIFAR-100

๐Ÿšง Training in Progress ๐Ÿšง

Current Status: Epoch 100/200


Current Performance
Metric Value
Best Test Accuracy 63.88%
Best Epoch 95
Current Train Accuracy 69.33%
Current Test Accuracy 63.77%
Current ฮฑ (Cantor param) 0.4342
Total Parameters 45,235,067
Training Time 0:26:52
Comparison to State-of-the-Art
Model Accuracy Status
geo-beatrix (this model) 63.88% ๐Ÿ”„ Training
vit-beatrix-dualstream 66.0% Vision Transformer + Cross-Entropy
CLIP ViT-L/14 (zero-shot) ~63-65% 400M image-text pairs
CLIP ViT-B/32 (zero-shot) ~63.5% Vision Transformer

๐ŸŽฏ Current target : Beat vit-beatrix (66.0%) - Currently -2.12%


Architecture
  • Base : ResNet-style with residual blocks
  • Channels : 64 โ†’ 128 โ†’ 256 โ†’ 512 โ†’ 1024
  • Positional Encoding : Devil's Staircase (Cantor function, 1883)
  • PE Levels : 20
  • PE Features/Level : 10
  • Classification : Geometric Basin Compatibility (NO cross-entropy)
  • Attention Mechanisms : NONE

Training Configuration
{
  "model_name": "geo-beatrix",
  "model_type": "geometric_basin_classifier",
  "num_classes": 100,
  "batch_size": 256,
  "num_epochs": 200,
  "base_learning_rate": 0.001,
  "weight_decay": 0.05,
  "warmup_epochs": 10,
  "pe_levels": 20,
  "pe_features_per_level": 10,
  "dropout": 0.1,
  "upload_every_n_epochs": 50,
  "alphamix": {
    "enabled": true,
    "range": [
      0.3,
      0.7
    ],
    "spatial_ratio": 0.25,
    "curriculum_start": 0.0,
    "curriculum_end": 0.5
  },
  "architecture": "ResNet-style with Devil's Staircase PE",
  "loss_function": "Geometric Basin Compatibility",
  "cross_entropy": false,
  "attention_mechanisms": false,
  "timestamp": "20251009_234907"
}

Files Structure
โ”œโ”€โ”€ model.pt                 (BEST overall model - easy access!)
โ”œโ”€โ”€ model.safetensors        (BEST overall model - easy access!)
โ”œโ”€โ”€ best_model_info.json     (which epoch/run this came from)
โ”œโ”€โ”€ README.md
โ”œโ”€โ”€ weights/geo-beatrix/20251009_234907/
โ”‚   โ”œโ”€โ”€ model.pt                 (best from this training run)
โ”‚   โ”œโ”€โ”€ model.safetensors        (best from this training run)
โ”‚   โ”œโ”€โ”€ config.json
โ”‚   โ”œโ”€โ”€ training_log.txt
โ”‚   โ””โ”€โ”€ checkpoints/
โ”‚       โ”œโ”€โ”€ checkpoint_epoch_10.safetensors
โ”‚       โ”œโ”€โ”€ checkpoint_epoch_20.safetensors
โ”‚       โ””โ”€โ”€ checkpoint_epoch_30.safetensors
โ”‚       (snapshots every 50 epochs)
โ””โ”€โ”€ runs/geo-beatrix/20251009_234907/
    โ”œโ”€โ”€ events.out.tfevents.*    (TensorBoard logs)
    โ””โ”€โ”€ metrics.csv              (training metrics)

Note : The root model.pt and model.safetensors always contain the best model across all training runs!


Usage
from huggingface_hub import hf_hub_download
import torch

# EASIEST: Download BEST overall model from root (recommended!)
from safetensors.torch import load_file
model_path = hf_hub_download(
    repo_id="AbstractPhil/geo-beatrix",
    filename="model.safetensors"
)
state_dict = load_file(model_path)
# model.load_state_dict(state_dict)

# Check which epoch/run the best model came from
info_path = hf_hub_download(
    repo_id="AbstractPhil/geo-beatrix",
    filename="best_model_info.json"
)
with open(info_path) as f:
    best_info = json.load(f)
    print(f"Best model: epoch {best_info['epoch']}, {best_info['test_accuracy']:.2f}%")

# Or download from specific training run
model_path = hf_hub_download(
    repo_id="AbstractPhil/geo-beatrix",
    filename="weights/geo-beatrix/20251009_234907/model.safetensors"
)

# Download specific epoch checkpoint
epoch_checkpoint = hf_hub_download(
    repo_id="AbstractPhil/geo-beatrix",
    filename="weights/geo-beatrix/20251009_234907/checkpoints/checkpoint_epoch_100.safetensors"
)

Training History
Best Checkpoint
  • Epoch: 95
  • Train Acc: 76.13%
  • Test Acc: 63.88%
  • Alpha: 0.4349
  • Loss: 0.7637
Latest 5 Epochs
  • Epoch 96 : Train 71.44%, Test 0.00%, ฮฑ=0.4352, Loss=0.7272
  • Epoch 97 : Train 73.64%, Test 0.00%, ฮฑ=0.4369, Loss=0.7389
  • Epoch 98 : Train 75.14%, Test 0.00%, ฮฑ=0.4359, Loss=0.7399
  • Epoch 99 : Train 71.31%, Test 0.00%, ฮฑ=0.4328, Loss=0.7187
  • Epoch 100 : Train 69.33%, Test 63.77%, ฮฑ=0.4342, Loss=0.7044
Training Milestones
  • ๐ŸŽฏ 50% Accuracy reached at epoch 35
  • ๐ŸŽฏ 60% Accuracy reached at epoch 55
  • ๐Ÿ“Š ฮฑ โ‰ฅ 0.40 reached at epoch 9

Innovation

โœ… NO attention mechanisms
โœ… NO cross-entropy loss
โœ… Fractal positional encoding (Cantor function from 1883)
โœ… Geometric compatibility classification
โœ… Ancient convolutions (ResNet-style from 1990s)


Repository : https://huggingface.co/AbstractPhil/geo-beatrix
Author : AbstractPhil
Framework : PyTorch

Runs of AbstractPhil geo-beatrix on huggingface.co

2
Total runs
0
24-hour runs
1
3-day runs
1
7-day runs
2
30-day runs

More Information About geo-beatrix huggingface.co Model

More geo-beatrix license Visit here:

https://choosealicense.com/licenses/mit

geo-beatrix huggingface.co

geo-beatrix huggingface.co is an AI model on huggingface.co that provides geo-beatrix's model effect (), which can be used instantly with this AbstractPhil geo-beatrix model. huggingface.co supports a free trial of the geo-beatrix model, and also provides paid use of the geo-beatrix. Support call geo-beatrix model through api, including Node.js, Python, http.

AbstractPhil geo-beatrix online free

geo-beatrix huggingface.co is an online trial and call api platform, which integrates geo-beatrix's modeling effects, including api services, and provides a free online trial of geo-beatrix, you can try geo-beatrix online for free by clicking the link below.

AbstractPhil geo-beatrix online free url in huggingface.co:

https://huggingface.co/AbstractPhil/geo-beatrix

geo-beatrix install

geo-beatrix is an open source model from GitHub that offers a free installation service, and any user can find geo-beatrix on GitHub to install. At the same time, huggingface.co provides the effect of geo-beatrix install, users can directly use geo-beatrix installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

geo-beatrix install url in huggingface.co:

https://huggingface.co/AbstractPhil/geo-beatrix

Url of geo-beatrix

Provider of geo-beatrix huggingface.co

AbstractPhil
ORGANIZATIONS

Other API from AbstractPhil

huggingface.co

Total runs: 9
Run Growth: 4
Growth Rate: 44.44%
Updated:November 25 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:March 27 2025