Manifest Specialist — Inventory Optimization

A specialized supply-chain domain-expert — focused entirely on inventory management & optimization.

Manifest Inventory Optimization is a domain-expert in the Manifest family: where the general Manifest orchestrator models cover all of supply chain, this one is tuned specifically for inventory management and optimization — safety stock, replenishment, multi-echelon, WMS, and service-vs-cost trade-offs.

  • Family: Manifest · Type: domain-expert (specialized) · Size: 2B
  • Specialty: inventory management & optimization

Preferred 77.5% of the time over the base model

On a focused 20-question inventory benchmark, an independent LLM judge panel preferred Manifest Inventory 2B's answer over the base model's 77.5% of the time (15 wins / 4 losses / 1 tie).

Best for

Inventory questions where a focused, practitioner's answer beats a generic one:

  • Safety stock, reorder points and replenishment policy
  • Multi-echelon inventory optimization (MEIO) and network stocking
  • WMS-driven capacity planning and service-vs-cost trade-offs

See the difference

Same question. Base model vs Manifest Inventory Optimization.

Ask: "In inventory management, how does a Warehouse Management System (WMS) support capacity planning?"

Base model → "A WMS supports capacity planning by providing real-time visibility into resource utilization, bottleneck identification, and demand forecasting." — a generic list.

Manifest Inventory Optimization → "A WMS is the software that controls a physical location — its layout, inventory, and movement — and it's a core tool for capacity planning because it makes physical and logical capacity visible and controllable…" — grounded, practitioner framing.

The Manifest family

Two kinds of models:

🧭 Orchestrators — general-purpose, handle any supply-chain area

Model Size Preferred over base Status
Manifest 0.8B 0.8B 68.5% ✅ available
Manifest 2B 2B 88.4% ✅ available
Manifest 4B 4B 90.9% ✅ available

🎯 Domain-experts — specialized for a single area

Model Preferred over base Status
Manifest Specialist · Risk & Resilience 72.5% ✅ available
Manifest Specialist · Inventory Optimization 77.5% ✅ available
Manifest Specialist · Demand Planning 82.5% ✅ available

Orchestrators are scored on the general supply-chain benchmark; domain-experts on their focused domain benchmark.

How to use

Manifest Inventory Optimization is a LoRA adapter (~44 MB), applied on top of its base model at load time.

from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer

base = "Qwen/Qwen3.5-2B"  # base model — see "Built on" below
tok = AutoTokenizer.from_pretrained(base)
model = AutoModelForCausalLM.from_pretrained(base, device_map="auto")
model = PeftModel.from_pretrained(model, "metafloor-ai/manifest-specialist-inventory-optimization")

SYSTEM = "You are a senior supply chain expert. Answer correctly and concisely."
msgs = [{"role": "system", "content": SYSTEM},
        {"role": "user", "content": "How should I set safety stock for a ~11k-SKU, 2-node network with 164-day lead time?"}]
inputs = tok.apply_chat_template(msgs, add_generation_prompt=True, return_dict=True, return_tensors="pt")
out = model.generate(**inputs, max_new_tokens=512, temperature=0.7)
print(tok.decode(out[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))

Prompt tip: include the asker's role and operating scale (revenue, SKUs, suppliers, nodes, lead time) for the sharpest answers.

Training details

Method LoRA (PEFT 0.20.0), rank 16 / alpha 16 / dropout 0.05
Target modules all attention + MLP projections
Trainable params 10,911,744 (~0.9% of the 1.21B base)
Epochs 3
Final loss 1.78

The training data is a focused, proprietary inventory dataset and is not open-sourced — only the held-out evaluation benchmark (supply-chain-eval) is public.

Evaluation

Scored on a focused 20-question inventory benchmark — pairwise LLM-as-judge (2-model panel), Manifest's answer vs the base model's for the same prompt.

Comparison Win-rate W / L / T
Manifest Inventory Optimization vs base 77.5% 15 / 4 / 1
Manifest Inventory Optimization vs base + format 72.5% 14 / 5 / 1

Benchmark: supply-chain-eval (inventory split). This is an early, focused benchmark — the sample is small, so treat it as directional.

Intended use & limitations

  • Intended use: decision-support and drafting for inventory management & optimization questions.
  • Out of scope: not legally binding, contractual, or safety-critical guidance; no access to your live systems. Verify outputs before acting.
  • Limitations: English-only; specialized to inventory (use a Manifest orchestrator for general questions); trained on synthetic data; standard LLM risks apply.

License

Released under CC-BY-NC-4.0 — free for research and non-commercial use, with attribution. Commercial use requires a license from MetaFloor — get in touch at metafloor.ai.

Built on

Manifest Inventory Optimization is a LoRA adapter over Qwen/Qwen3.5-2B (used under its own license); the base model is required to load the adapter.

Citation

@misc{metafloor_manifest_inventory_2b,
  title  = {Manifest Inventory Optimization: an inventory domain-expert (MetaFloor Manifest family)},
  author = {MetaFloor AI},
  year   = {2026},
  howpublished = {\url{https://huggingface.co/metafloor-ai/manifest-specialist-inventory-optimization}}
}
Downloads last month
27
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for metafloor-ai/manifest-specialist-inventory-optimization

Finetuned
Qwen/Qwen3.5-2B
Adapter
(211)
this model

Collection including metafloor-ai/manifest-specialist-inventory-optimization

Evaluation results

  • Preferred over base model by independent LLM judge panel on supply-chain-eval (inventory)
    self-reported
    0.775