Instructions to use poietic-pbc/m2rnn-cma-1.3b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use poietic-pbc/m2rnn-cma-1.3b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="poietic-pbc/m2rnn-cma-1.3b", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("poietic-pbc/m2rnn-cma-1.3b", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use poietic-pbc/m2rnn-cma-1.3b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "poietic-pbc/m2rnn-cma-1.3b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "poietic-pbc/m2rnn-cma-1.3b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/poietic-pbc/m2rnn-cma-1.3b
- SGLang
How to use poietic-pbc/m2rnn-cma-1.3b 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 "poietic-pbc/m2rnn-cma-1.3b" \ --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": "poietic-pbc/m2rnn-cma-1.3b", "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 "poietic-pbc/m2rnn-cma-1.3b" \ --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": "poietic-pbc/m2rnn-cma-1.3b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use poietic-pbc/m2rnn-cma-1.3b with Docker Model Runner:
docker model run hf.co/poietic-pbc/m2rnn-cma-1.3b
M2RNN-CMA 1.3B v0.3 local release candidate
Generated for local v0.3 release-candidate validation only. NOT a public Hugging Face upload; does not modify any public tag; must not be published without a separate human approval gate. The source checkpoint matches the committed V3 paper endpoint (not the latest training step).
Source Checkpoint
- Model identity: M2RNN-CMA
- Intended public repository after approval:
poietic-pbc/m2rnn-cma-1.3b - Local release-candidate marker:
v0.3-rc-local - Source checkpoint:
/tmp/pile_convergence_m2rnn/ctx2k/m2rnn_tied_resume_xma_ckpt/levelm2rnn_1270M_20260511_175023/checkpoint_step_1467000_loss_2.6277.pt - Source checkpoint SHA256:
72c03692ca62762b4fad07017f03e0b147b0cc8b79716c02ff3f08356b56676d - Checkpoint step:
1467000 - Raw checkpoint loss:
2.6277 - Converted safetensors size:
2807297000bytes - Safetensors keys:
150
Loading Notes
Use trust_remote_code=True with the matching ndm source package installed.
- Downloads last month
- 128