AI SeedbankHelp preserve open and free AI for humanity's future

← All models

microsoft_phi-4

microsoft · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: mit license_link: https://huggingface.co/microsoft/phi-4/resolve/main/LICENSE language:

  • en pipeline_tag: text-generation tags:
  • phi
  • nlp
  • math
  • code
  • chat
  • conversational inference: parameters: temperature: 0 widget:
  • messages:
    • role: user content: How should I explain the Internet? library_name: transformers

Phi-4 Model Card

Phi-4 Technical Report

Model Summary

Developers Microsoft Research
Description phi-4 is a state-of-the-art open model built upon a blend of synthetic datasets, data from filtered public domain websites, and acquired academic books and Q&A datasets. The goal of this approach was to ensure that small capable models were trained with data focused on high quality and advanced reasoning.

phi-4 underwent a rigorous enhancement and alignment process, incorporating both supervised fine-tuning and direct preference optimization to ensure precise instruction adherence and robust safety measures
Architecture 14B parameters, dense decoder-only Transformer model
Inputs Text, best suited for prompts in the chat format
Context length 16K tokens
GPUs 1920 H100-80G
Training time 21 days
Training data 9.8T tokens
Outputs Generated text in response to input
Dates October 2024 – November 2024
Status Static model trained on an offline dataset with cutoff dates of June 2024 and earlier for publicly available data
Release date December 12, 2024
License MIT

Intended Use

Primary Use Cases Our model is designed to accelerate research on language models, for use as a building block for generative AI powered features. It provides uses for general purpose AI systems and applications (primarily in English) which require:

1. Memory/compute constrained environments.
2. Latency bound scenarios.
3. Reasoning and logic.
Out-of-Scope Use Cases Our models is not specifically designed or evaluated for all downstream purposes, thus:

1. Developers should consider common limitations of language models as they select use cases, and evaluate and mitigate for accuracy, safety, and fairness before using within a specific downstream use case, particularly for high-risk scenarios.
2. Developers should be aware of and adhere to applicable laws or regulations (including privacy, trade compliance laws, etc.) that are relevant to their use case, including the model’s focus on English.
3. Nothing contained in this Model Card should be interpreted as or deemed a restriction or modification to the license the model is released under.

Data Overview

Training Datasets

Our training data is an extension of the data used for Phi-3 and includes a wide variety of sources from:

  1. Publicly available documents filtered rigorously for quality, selected high-quality educational data, and code.

  2. Newly created synthetic, “textbook-like” data for the purpose of teaching math, coding, common sense reasoning, general knowledge of the world (science, daily activities, theory of mind, etc.).

  3. Acquired academic books and Q&A datasets.

  4. High quality chat format supervised data covering various topics to reflect human preferences on different aspects such as instruct-following, truthfulness, honesty and helpfulness.

Multilingual data constitutes about 8% of our overall data. We are focusing on the quality of data that could potentially improve the reasoning ability for the model, and we filter the publicly available documents to contain the correct level of knowledge.

Benchmark datasets

We evaluated phi-4 using OpenAI’s SimpleEval and our own internal benchmarks to understand the model’s capabilities, more specifically:

  • MMLU: Popular aggregated dataset for multitask language understanding.

  • MATH: Challenging competition math problems.

  • GPQA: Complex, graduate-level science questions.

  • DROP: Complex comprehension and reasoning.

  • MGSM: Multi-lingual grade-school math.

  • HumanEval: Functional code generation.

  • SimpleQA: Factual responses.

Safety

Approach

phi-4 has adopted a robust safety post-training approach. This approach leverages a variety of both open-source and in-house generated synthetic datasets. The overall technique employed to do the safety alignment is a combination of SFT (Supervised Fine-Tuning) and iterative DPO (Direct Preference Optimization), including publicly available datasets focusing on helpfulness and harmlessness as well as various questions and answers targeted to multiple safety categories.

Safety Evaluation and Red-Teaming

Prior to release, phi-4 followed a multi-faceted evaluation approach. Quantitative evaluation was conducted with multiple open-source safety benchmarks and in-house tools utilizing adversarial conversation simulation. For qualitative safety evaluation, we collaborated with the independent AI Red Team (AIRT) at Microsoft to assess safety risks posed by phi-4 in both average and adversarial user scenarios. In the average user scenario, AIRT emulated typical single-turn and multi-turn interactions to identify potentially risky behaviors. The adversarial user scenario tested a wide range of techniques aimed at intentionally subverting the model’s safety training including jailbreaks, encoding-based attacks, multi-turn attacks, and adversarial suffix attacks.

Please refer to the technical report for more details on safety alignment.

Model Quality

To understand the capabilities, we compare phi-4 with a set of models over OpenAI’s SimpleEval benchmark.

At the high-level overview of the model quality on representative benchmarks. For the table below, higher numbers indicate better performance:

Category Benchmark phi-4 (14B) phi-3 (14B) Qwen 2.5 (14B instruct) GPT-4o-mini Llama-3.3 (70B instruct) Qwen 2.5 (72B instruct) GPT-4o
Popular Aggregated Benchmark MMLU 84.8 77.9 79.9 81.8 86.3 85.3 88.1
Science GPQA 56.1 31.2 42.9 40.9 49.1 49.0 50.6
Math MGSM
MATH
80.6
80.4
53.5
44.6
79.6
75.6
86.5
73.0
89.1
66.3*
87.3
80.0
90.4
74.6
Code Generation HumanEval 82.6 67.8 72.1 86.2 78.9* 80.4 90.6
Factual Knowledge SimpleQA 3.0 7.6 5.4 9.9 20.9 10.2 39.4
Reasoning DROP 75.5 68.3 85.5 79.3 90.2 76.7 80.9

* These scores are lower than those reported by Meta, perhaps because simple-evals has a strict formatting requirement that Llama models have particular trouble following. We use the simple-evals framework because it is reproducible, but Meta reports 77 for MATH and 88 for HumanEval on Llama-3.3-70B.

Usage

Input Formats

Given the nature of the training data, phi-4 is best suited for prompts using the chat format as follows:

<|im_start|>system<|im_sep|>
You are a medieval knight and must provide explanations to modern people.<|im_end|>
<|im_start|>user<|im_sep|>
How should I explain the Internet?<|im_end|>
<|im_start|>assistant<|im_sep|>

With transformers

import transformers

pipeline = transformers.pipeline(
    "text-generation",
    model="microsoft/phi-4",
    model_kwargs={"torch_dtype": "auto"},
    device_map="auto",
)

messages = [
    {"role": "system", "content": "You are a medieval knight and must provide explanations to modern people."},
    {"role": "user", "content": "How should I explain the Internet?"},
]

outputs = pipeline(messages, max_new_tokens=128)
print(outputs[0]["generated_text"][-1])

Responsible AI Considerations

Like other language models, phi-4 can potentially behave in ways that are unfair, unreliable, or offensive. Some of the limiting behaviors to be aware of include:

  • Quality of Service: The model is trained primarily on English text. Languages other than English will experience worse performance. English language varieties with less representation in the training data might experience worse performance than standard American English. phi-4 is not intended to support multilingual use.

  • Representation of Harms & Perpetuation of Stereotypes: These models can over- or under-represent groups of people, erase representation of some groups, or reinforce demeaning or negative stereotypes. Despite safety post-training, these limitations may still be present due to differing levels of representation of different groups or prevalence of examples of negative stereotypes in training data that reflect real-world patterns and societal biases.

  • Inappropriate or Offensive Content: These models may produce other types of inappropriate or offensive content, which may make it inappropriate to deploy for sensitive contexts without additional mitigations that are specific to the use case.

  • Information Reliability: Language models can generate nonsensical content or fabricate content that might sound reasonable but is inaccurate or outdated.

  • Limited Scope for Code: Majority of phi-4 training data is based in Python and uses common packages such as typing, math, random, collections, datetime, itertools. If the model generates Python scripts that utilize other packages or scripts in other languages, we strongly recommend users manually verify all API uses.

Developers should apply responsible AI best practices and are responsible for ensuring that a specific use case complies with relevant laws and regulations (e.g. privacy, trade, etc.). Using safety services like Azure AI Content Safety that have advanced guardrails is highly recommended. Important areas for consideration include:

  • Allocation: Models may not be suitable for scenarios that could have consequential impact on legal status or the allocation of resources or life opportunities (ex: housing, employment, credit, etc.) without further assessments and additional debiasing techniques.

  • High-Risk Scenarios: Developers should assess suitability of using models in high-risk scenarios where unfair, unreliable or offensive outputs might be extremely costly or lead to harm. This includes providing advice in sensitive or expert domains where accuracy and reliability are critical (ex: legal or health advice). Additional safeguards should be implemented at the application level according to the deployment context.

  • Misinformation: Models may produce inaccurate information. Developers should follow transparency best practices and inform end-users they are interacting with an AI system. At the application level, developers can build feedback mechanisms and pipelines to ground responses in use-case specific, contextual information, a technique known as Retrieval Augmented Generation (RAG).

  • Generation of Harmful Content: Developers should assess outputs for their context and use available safety classifiers or custom solutions appropriate for their use case.

  • Misuse: Other forms of misuse such as fraud, spam, or malware production may be possible, and developers should ensure that their applications do not violate applicable laws and regulations.

  • Data Summary: https://huggingface.co/microsoft/phi-4/blob/main/data_summary_card.md

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:280487e6056e56359a9d959035fff8fbdcce6180&dn=microsoft_phi-4

Open magnet in torrent client · infohash 280487e6056e56359a9d959035fff8fbdcce6180

Files & hashes

PathSizesha1sha256
CODE_OF_CONDUCT.md453 B (453 B)c72a5749c52ac97bca71c672ef5295d303d22b05539b1bfc810aa62738af95866bfe584d568b0dca71aebed0bd81db0bdaebade3
LICENSE1.1 KB (1,105 B)700edcc5f42c4816520bc554926ad7e0d9e613d7c49419617a6070bcb197cfe272f7007fdec3e790dbb529cb995473bd69c0bd51
README.md13.4 KB (13,763 B)97d90faa2a92ed8fabbc553e46368d6d34e76e894cc56faa6a5bcbde6227789b2ef9aedfde481ca660c8a4b686703aae19b00011
SECURITY.md2.6 KB (2,697 B)6b906d43bc2057e6a832c3236897b2e514d6e1e7891c6326bdd8ea026af23af20fd7dd7167b666f4bd4f63cf22dfdef09d5e78b2
added_tokens.json2.4 KB (2,495 B)c410491b4c95d889958ff4480f37ab235018a67fe2c8dff553db16508eb2bbaf1de51c13256727ddde88b5c65e1e75c224e277f0
config.json802 B (802 B)ab17e0b5838762a837102af7269223b5a20d52fd07eedad2c48798b6e3728e4a1b75e0e092019a375ba725a40e40c78d13664045
data_summary_card.md4.7 KB (4,767 B)e736b6fa688eeae045ef56be10d2225813f017fb3571ffd8d9f63dbd09c882880219cc6b254a85cc25a7d5308f6566d12c43f3f7
generation_config.json184 B (184 B)aaad1bd08a7521c56ff79061403d43a04bd1a6b96acf48d95f0a1deb97acf54d946636243e299bf315b068efd719708ceea5741d
merges.txt895.2 KB (916,646 B)354558edcdbd64ca7abd407b8be3d5d09d39d781b6fe424e334903f7fb84d3a106d9730455f4744b9fe3c21ee136d97a00e72502
model-00001-of-00006.safetensors4.59 GB (4,933,656,472 B)d8643318ec54d04ff8b47c88f81fa323c3ed0cd7cafbe72210c39b19270cbfce27996afc4383c8a487087bcb91a6290d5ceb8f18
model-00002-of-00006.safetensors4.61 GB (4,954,690,712 B)25a7de9804aa97a2bbe8e1a2959f9e40c587ecd49f87a5897162ed988cfb0fac13879634b4bab3da5a756b4f9dd2437ef8145e20
model-00003-of-00006.safetensors4.57 GB (4,902,241,352 B)83b548153f968a47e40ea495527a84843c255b9b19537df78a263aa0c0b2dc12dbce5908021e30a25e528699b08642c3999eeb05
model-00004-of-00006.safetensors4.44 GB (4,771,169,120 B)7e49535d6782cfa2b4fb7b564d64340f34b2c82cd4f17100a39c19d352f2e8108eef6fb975afb86808e50d78a075e162f1edfc93
model-00005-of-00006.safetensors4.44 GB (4,771,169,120 B)25567c54e6905519c463a98fc519b16463298c49a72666b6001d76e7a9dc3ebe0d05a2c3316f546a8c6779c87343f296bdf82e50
model-00006-of-00006.safetensors4.64 GB (4,986,116,216 B)1f001ae6614ad7bcf68f9058392d885f0f42a2f4a9bfeeea354e31503d09a864e6cd5bd0f1230664065b6a2988b05e22b3228d77
model.safetensors.index.json19.9 KB (20,364 B)d9c4e28d4f7cc72949fdc86940c8a6758375043651f3004b8d5b478473f26eb8cb5ac7e5aacc39938ad365f0c8933b18dfa9a158
special_tokens_map.json95 B (95 B)ea8cb2e2c57355312c3ff7b0e0f1beaf8e88ce8eb0e1617caf68ebcd6af7426d6afdbe62a3fb8fbe56ea84782a88fc8cbd464b1d
tokenizer.json4.1 MB (4,253,055 B)4cc07e6ec369bc5bdfd719da75f411373d8b436a9f38d05d9d25756bb2f181ab5a0cebcd59e638df10336fc7ed1010f7296d0298
tokenizer_config.json17.3 KB (17,737 B)25c30b707a88b5e5fc715fb81d2221d1162380b42b707658c7c2b41580155a45503d7d3b42dc2f530bef678f67a39bf5d10b0510
vocab.json1.5 MB (1,612,637 B)c5dc46ce1c830966b5e947da6d471ea3c2e1e57e741943243bd0035a8082ef0ccc09ef62e7ce7ec2f2f053aeedd808dba1c2ffc5

Cite this release

Canonical URL
https://aiseedbank.org/models/microsoft_phi-4/
Slug
microsoft_phi-4
Infohash
280487e6056e56359a9d959035fff8fbdcce6180
License
mit
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: microsoft_phi-4.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorymicrosoft/phi-4
Revision (pinned)2db69c1c3e91a05d2c64a3185acfbaf36f744e25
Fetched at2026-09-04T13:37:43Z
License at fetchmit
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T13:43:22Z

mit27.31 GB (29,325,889,792 bytes)transformerssafetensorsphi3text-generationphinlpmathcodechatconversationaleval-resultstext-generation-inferenceendpoints_compatible1 language (en)paper: 2412.08905