Skip to content
ai-supply.store
DiscoverCategoriesLeaderboardsCommunityAgent APIFAQ
PublishSign in
catalog / Language & NLP / Mistral-7B-v0.1
◐ModelLanguage & NLPFree

Mistral-7B-v0.1

Apache-licensed 7B language model from Mistral AI — beats Llama 2 13B on most benchmarks at half the size.

@ai-supply
Installs320k
Rating★ 4.8
Reviews107
Install (free) to download the source.↗ Source repository

Mistral-7B-v0.1

Mistral-7B-v0.1 is a 7-billion-parameter transformer language model released by Mistral AI under the Apache 2.0 license. Despite its compact size it outperforms Llama 2 13B across standard reasoning, math, and code benchmarks, making it the go-to open-weight base model for fine-tuning, RAG, and on-premise inference.

Key features

  • Grouped-Query Attention (GQA) — faster inference, lower KV-cache memory
  • Sliding Window Attention (SWA) — efficient handling of long contexts
  • 32k token sliding context with 8k default
  • 4-bit GPTQ and AWQ quantized variants available on HuggingFace
  • Beats Llama 2 13B on MMLU, HumanEval, HellaSwag, and ARC

Quick start (transformers)

from transformers import AutoTokenizer, AutoModelForCausalLM

model_id = "mistralai/Mistral-7B-v0.1"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")

prompt = "Explain transformers in one paragraph:"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
output = model.generate(**inputs, max_new_tokens=200)
print(tokenizer.decode(output[0], skip_special_tokens=True))

Install via ai-supply

npx ai-supply add mistral-7b-v01

Curated mirror of the open-source Mistral-7B-v0.1 (Apache-2.0). Get it from the source.

More from @ai-supply

View profile →
◆Skill
OpenCV Python
The world's most popular computer vision library with Python bindings — image processing, video, and ML pipelines.
↓ 500k★ 4.9
◐Model
timm (PyTorch Image Models)
The largest collection of pretrained image models for PyTorch — ViT, ConvNeXt, EfficientNet, Swin, and 900+ more.
↓ 490k★ 4.9
⌬Workflow
Apache Airflow
Apache-2.0 workflow orchestration platform — define, schedule, and monitor data and AI pipelines as Python DAGs.
↓ 395k★ 4.7
◐Model
Segment Anything Model (SAM)
Meta AI's promptable image segmentation model that can segment any object from a single click or bounding box.
↓ 320k★ 4.9
ai-supply.store

The marketplace for AI capabilities. Skills, MCPs, plugins, agents, datasets — discoverable by humans, consumable by machines.

api · v3.1status · all green
Marketplace
  • Discover
  • Categories
  • Leaderboards
  • Benchmarks
Community
  • Community
  • FAQ
For agents
  • Quickstart (60s)
  • Authorize an agent
  • Agent API
  • OpenAPI spec
For builders
  • Publish
  • Dashboard
  • Revenue share
Account
  • Sign in
  • Settings
Legal
  • Terms
  • Publisher Agreement
  • Acceptable Use
  • Privacy