AbstractPhil / geo-beatrix-resnet

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

Introduction of geo-beatrix-resnet

Model Details of geo-beatrix-resnet

geo-beatrix-resnet34-step12-feats100

Geometric Basin Classification for CIFAR-100

๐Ÿšง Training in Progress ๐Ÿšง

Current Status: Epoch 150/200


Current Performance
Metric Value
Best Test Accuracy 56.12%
Best Epoch 160
Current Train Accuracy 74.61%
Current Test Accuracy 53.12%
Current ฮฑ (Cantor param) 0.4855
Total Parameters 21,846,001
Training Time 0:19:20
All Training Runs
Timestamp Status Best Epoch Test Acc Train Acc ฮฑ
20251010_203717 โœ… 160 56.12% 67.82% 0.4481
20251010_211210 ๐Ÿ”„ 160 56.12% 16.21% 0.3879
20251010_213807 โœ… 160 56.12% 64.44% 0.4419
20251010_230300 โœ… 160 56.12% 52.13% 0.4997
20251010_234239 ๐Ÿ”„ 160 56.12% 74.61% 0.4855
20251010_200842 โœ… 180 53.61% 67.53% 0.4442
20251010_185133 โœ… 200 52.97% 69.87% 0.4452
Comparison to State-of-the-Art
Model Accuracy Status
geo-beatrix (this model) 56.12% ๐Ÿ”„ Training
geo-beatrix (50M params) 69.0% Geometric Basin CONV architecture

๐ŸŽฏ Current target : Beat geo-beatrix (69.0%) - Currently -12.88%


Architecture
  • Base : ResNet34 (torchvision)
  • Pretrained : From scratch
  • Features : 512-dim from ResNet34
  • Positional Encoding : Devil's Staircase (Cantor function, 1883)
  • PE Levels : 12
  • PE Features/Level : 100
  • Classification : Geometric Basin Compatibility (NO cross-entropy)
  • Attention Mechanisms : NONE
  • Mixing : Fractal (triadic multi-patch)

Training Configuration
{
  "model_name": "geo-beatrix-resnet34-step12-feats100",
  "model_type": "geometric_basin_classifier",
  "num_classes": 100,
  "batch_size": 1024,
  "num_epochs": 200,
  "base_learning_rate": 0.001,
  "weight_decay": 0.0,
  "warmup_epochs": 10,
  "pe_levels": 12,
  "pe_features_per_level": 100,
  "dropout": 0.1,
  "pretrained_resnet": false,
  "frozen_resnet": false,
  "a100_optimizations": {
    "mixed_precision": true,
    "torch_compile": false,
    "channels_last": true,
    "gradient_checkpointing": false
  },
  "alphamix": {
    "enabled": true,
    "fractal_mode": true,
    "range": [
      0.3,
      0.7
    ],
    "spatial_ratio": 0.05,
    "curriculum_start": 0.25,
    "curriculum_end": 0.5,
    "fractal_steps": [
      1,
      3
    ],
    "fractal_scales": [
      0.3333333333333333,
      0.1111111111111111,
      0.037037037037037035
    ]
  },
  "architecture": "ResNet34 + Devil's Staircase PE",
  "loss_function": "Geometric Basin Compatibility",
  "cross_entropy": false,
  "attention_mechanisms": false,
  "timestamp": "20251010_234239"
}

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)
โ”œโ”€โ”€ runs_history.json        (all training runs and their results)
โ”œโ”€โ”€ README.md
โ”œโ”€โ”€ weights/geo-beatrix-resnet34-step12-feats100/20251010_234239/
โ”‚   โ”œโ”€โ”€ model.pt                 (best from this training run)
โ”‚   โ”œโ”€โ”€ model.safetensors        (best from this training run)
โ”‚   โ”œโ”€โ”€ config.json
โ”‚   โ”œโ”€โ”€ training_log.txt
โ”‚   โ””โ”€โ”€ checkpoints/
โ”‚       โ”œโ”€โ”€ checkpoint_epoch_50.safetensors
โ”‚       โ”œโ”€โ”€ checkpoint_epoch_100.safetensors
โ”‚       โ””โ”€โ”€ checkpoint_epoch_150.safetensors
โ”‚       (snapshots every 10 epochs)
โ””โ”€โ”€ runs/geo-beatrix-resnet34-step12-feats100/20251010_234239/
    โ”œโ”€โ”€ 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-resnet",
    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-resnet",
    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-resnet",
    filename="weights/geo-beatrix-resnet34-step12-feats100/20251010_234239/model.safetensors"
)

# Download specific epoch checkpoint
epoch_checkpoint = hf_hub_download(
    repo_id="AbstractPhil/geo-beatrix-resnet",
    filename="weights/geo-beatrix-resnet34-step12-feats100/20251010_234239/checkpoints/checkpoint_epoch_100.safetensors"
)

Training History
Best Checkpoint
  • Epoch: 160
  • Train Acc: 74.61%
  • Test Acc: 56.12%
  • Alpha: 0.4855
  • Loss: 0.0000
Latest 5 Epochs
  • Epoch 146 : Train 71.93%, Test 54.14%, ฮฑ=0.4849, Loss=0.7198
  • Epoch 147 : Train 73.77%, Test 0.00%, ฮฑ=0.4851, Loss=0.7246
  • Epoch 148 : Train 72.73%, Test 53.57%, ฮฑ=0.4852, Loss=0.7322
  • Epoch 149 : Train 70.84%, Test 0.00%, ฮฑ=0.4854, Loss=0.6536
  • Epoch 150 : Train 74.61%, Test 53.12%, ฮฑ=0.4855, Loss=0.7047
Training Milestones
  • ๐ŸŽฏ 50% Accuracy reached at epoch 66
  • ๐Ÿ“Š ฮฑ โ‰ฅ 0.40 reached at epoch 36
  • ๐Ÿ“Š ฮฑ โ‰ฅ 0.44 (near triadic equilibrium) at epoch 59

Innovation

โœ… NO attention mechanisms
โœ… NO cross-entropy loss
โœ… Fractal positional encoding (Cantor function from 1883)
โœ… Geometric compatibility classification
โœ… ResNet34 backbone (proven CNN architecture) โœ… Triadic fractal mixing (base-3 aligned)


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

Runs of AbstractPhil geo-beatrix-resnet on huggingface.co

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

More Information About geo-beatrix-resnet huggingface.co Model

More geo-beatrix-resnet license Visit here:

https://choosealicense.com/licenses/mit

geo-beatrix-resnet huggingface.co

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

AbstractPhil geo-beatrix-resnet online free

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

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

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

geo-beatrix-resnet install

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

geo-beatrix-resnet install url in huggingface.co:

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

Url of geo-beatrix-resnet

geo-beatrix-resnet huggingface.co Url

Provider of geo-beatrix-resnet huggingface.co

AbstractPhil
ORGANIZATIONS

Other API from AbstractPhil

huggingface.co

Total runs: 7
Run Growth: 2
Growth Rate: 28.57%
Updated:November 25 2025
huggingface.co

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