CoolFace
Modelpublic

Tribewarez/pot-o-pathfinder-tiny-v1

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes
Model Card

<div align="center">

pot-o-pathfinder-tiny-v1 ๐Ÿงฌ๐Ÿ”๐ŸŒŒ

Tribewarez Guild โ€“ First Tensor Model Release Tiny model for Proof of Tensor Optimizations (PoT-O) path prediction on low-level devices

Live Beta โ€ข Permanently Open-Source โ€ข New guild in the cosmos

</div>

๐ŸŒŒ Model Overview

pot-o-pathfinder-tiny-v1 is the inaugural publicly released model from the Tribewarez guild.

Purpose Trained to predict high-efficiency tensor transformation paths for PoT-O mining challenges. Given an input challenge tensor (e.g., flattened activation matrix or weight block), the model proposes a compressed / optimized computation path (sequence of ops: matmul โ†’ activation โ†’ low-rank adapt โ†’ quantize โ†’ prune) that maximizes Minimum Message Length (MML) compression while staying within verifiable neural-path constraints.

This helps low-power miners (ESP32, mobile, edge devices) propose better proofs faster than random search, improving guild-wide PoT-O efficiency.

Key Specs

  • โ€”Architecture: Tiny feedforward / 4-layer transformer-inspired (configurable)
  • โ€”Parameters: ~1.2M โ€“ 3.8M (depending on variant uploaded)
  • โ€”Input: Flattened challenge tensor + metadata tokens (shape, dtype, target compression ratio)
  • โ€”Output: Sequence of optimization ops + predicted efficiency score
  • โ€”Quantization: 8-bit & 4-bit AWQ/GPTQ ready (GGUF export planned)
  • โ€”Inference footprint: < 4 MB RAM (ideal for esp-pot-o-miner integration)
  • โ€”Training: Synthetic PoT-O challenge dataset + real tensor traces from ai3-lib validators

Release Date: March 2026 (live beta phase)

๐Ÿš€ Intended Use & PoT-O Integration

  • โ€”Primary use: PoT-O miners use this model to generate candidate paths โ†’ run full forward pass โ†’ submit proof if MML-optimal.
  • โ€”Secondary uses:
  • โ€”On-device tensor compression advisor
  • โ€”Lightweight neural-path validator helper
  • โ€”Research into useful PoW alternatives
  • โ€”Not intended for: General-purpose chat, image gen, or high-precision scientific computing

Integrates directly with:

  • โ€”pot-o-core โ€“ path encoding & proof structs
  • โ€”ai3-lib โ€“ tensor challenge generation & verification
  • โ€”esp-pot-o-miner โ€“ upcoming ONNX / TFLite port for ESP32 inference

๐Ÿ› ๏ธ How to Use

With Transformers (desktop / validator)

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "tribewarez/pot-o-pathfinder-tiny-v1"

tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")

challenge_input = "tensor:shape=[64,128];dtype=float16;target_mml=0.42 ops:matmul,gelu,quant4,prune0.3"

inputs = tokenizer(challenge_input, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=128, do_sample=False)

print(tokenizer.decode(outputs[0]))
# Example output: "path: matmul[lowrank:32] -> gelu -> quant:4bit/int8 -> prune:0.35 -> score:0.418"

On low-level devices (future)

Export โ†’ ONNX / TorchScript Run via ONNX Runtime WebAssembly or tinygrad / esp-nn Planned: GGUF conversion for llama.cpp-style embedded inference

๐Ÿ“Š Performance (Beta Benchmarks)

Device / SetupInference TimeRAM UsagePath Quality Gain vs RandomESP32-S3 (8-bit)~180โ€“320 ms~3.1 MB+18โ€“34% MML efficiencyRaspberry Pi 4 (4-bit)~45โ€“90 ms~4.8 MB+22โ€“41%Desktop RTX 3060 (fp16)<5 ms~12 MBBaseline Early live-beta numbers from testnet miners โ€“ expect rapid iteration. โš ๏ธ Beta Warnings

This is live beta software โ€” model outputs may change in v1.1โ€“v2 as PoT-O RFCs evolve (V3 staking, V4 vaults). Challenge formats & tokenization may break between minor releases. Use at your own risk for real mining โ€” testnet only for now.

๐Ÿ“œ License & Open-Source Commitment MIT License โ€” all weights, code, tokenizer, config permanently open. No closed-source components will ever be introduced in Tribewarez core models or infra. ๐Ÿค Join the Guild Help shape the next versions:

Suggest better challenge encodings Contribute synthetic training data Port to more embedded runtimes PRs to: https://github.com/TribeWarez (pot-o-core, ai3-lib, etc.)

Docs & RFCs โ†’ https://docs.tribewarez.com/public Testnet RPC โ†’ https://pot.rpc.gateway.tribewarez.com Status โ†’ https://status.rpc.gateway.tribewarez.com Tribewarez โ€” forging tensor futures in the cosmos โ€ข 2026โ€“โˆž