Tribewarez/pot-o-pathfinder-tiny-v1
<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)
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โโ
