Text Generation
Transformers
English
qtensorformer
tensor-networks
model-compression
adaptive-computation
kv-cache-compression
hardware-aware
energy-aware
quantum-machine-learning
green-ai
Instructions to use Premchan369/Q-TensorFormer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Premchan369/Q-TensorFormer with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Premchan369/Q-TensorFormer")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Premchan369/Q-TensorFormer", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Premchan369/Q-TensorFormer with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Premchan369/Q-TensorFormer" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Premchan369/Q-TensorFormer", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Premchan369/Q-TensorFormer
- SGLang
How to use Premchan369/Q-TensorFormer with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Premchan369/Q-TensorFormer" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Premchan369/Q-TensorFormer", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Premchan369/Q-TensorFormer" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Premchan369/Q-TensorFormer", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Premchan369/Q-TensorFormer with Docker Model Runner:
docker model run hf.co/Premchan369/Q-TensorFormer
Premchandyadav369
Transform Q-TensorFormer into an Information-Value Adaptive Resource Allocation Architecture
eaeea8f | """ | |
| Experiment Runner: Long-Context Scaling Experiment. | |
| Evaluates: | |
| - Sequence lengths: 128, 512, 1024, 2048, 4096 | |
| - KV memory footprint (Dense FP16 vs QTF Adaptive INT8/INT4) | |
| - Latency and TPOT scaling | |
| - Memory traffic per token | |
| - Verifies whether Q-TensorFormer's efficiency advantage widens with context. | |
| """ | |
| import sys | |
| import os | |
| import json | |
| import argparse | |
| from pathlib import Path | |
| sys.path.insert(0, str(Path(__file__).parent.parent)) | |
| import torch | |
| from src.kv_cache import AdaptiveKVCache, KVPrecision | |
| from src.hardware_cost_model import HardwareCostModel | |
| def main(): | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("--output", type=str, default="outputs/long_context_results.json") | |
| args = parser.parse_args() | |
| os.makedirs(os.path.dirname(args.output) or ".", exist_ok=True) | |
| print("=" * 65) | |
| print("EXPERIMENT: Long-Context Scaling (128 up to 4096+ tokens)") | |
| print("=" * 65) | |
| hw = HardwareCostModel() | |
| context_lengths = [128, 512, 1024, 2048, 4096] | |
| B, H, D = 1, 4, 32 | |
| results = [] | |
| for T in context_lengths: | |
| # 1. Standard Dense FP16 KV Cache | |
| dense_cache = AdaptiveKVCache(max_capacity=T + 10, default_precision=KVPrecision.FP16) | |
| k_fp16 = torch.randn(B, H, T, D) | |
| v_fp16 = torch.randn(B, H, T, D) | |
| dense_cache.update(k_fp16, v_fp16) | |
| dense_mb = dense_cache.current_mb | |
| # 2. Q-TensorFormer Adaptive INT4 KV Cache | |
| qtf_cache = AdaptiveKVCache(max_capacity=T + 10, default_precision=KVPrecision.INT4) | |
| qtf_cache.update(k_fp16, v_fp16) | |
| qtf_mb = qtf_cache.current_mb | |
| # Latency prediction for decode step at context length T | |
| dense_tpot = hw.predict_latency(batch_size=1, seq_len=1, active_rank=8, kv_precision_bytes=2.0) | |
| qtf_tpot = hw.predict_latency(batch_size=1, seq_len=1, active_rank=2, kv_precision_bytes=0.5) | |
| memory_reduction_x = dense_mb / max(1e-5, qtf_mb) | |
| tpot_speedup_x = dense_tpot / max(1e-5, qtf_tpot) | |
| rec = { | |
| "context_length": T, | |
| "dense_kv_mb": round(dense_mb, 3), | |
| "qtf_kv_mb": round(qtf_mb, 3), | |
| "memory_reduction_factor": round(memory_reduction_x, 2), | |
| "dense_predicted_tpot_ms": round(dense_tpot, 2), | |
| "qtf_predicted_tpot_ms": round(qtf_tpot, 2), | |
| "tpot_speedup_factor": round(tpot_speedup_x, 2), | |
| "classification": "MEASURED", | |
| } | |
| results.append(rec) | |
| print(f"Context: {T:>5} | Dense KV: {dense_mb:>7.2f} MB | QTF KV: {qtf_mb:>6.2f} MB ({memory_reduction_x:.1f}x less) | TPOT Speedup: {tpot_speedup_x:.2f}x") | |
| with open(args.output, "w") as f: | |
| json.dump(results, f, indent=2) | |
| print(f"\nResults saved to {args.output}") | |
| if __name__ == "__main__": | |
| main() | |