🎉 Phi-3.5: [mini-instruct]; [MoE-instruct] ; [vision-instruct]
The Phi-3-Small-128K-Instruct is a 7B parameters, lightweight, state-of-the-art open model trained with the Phi-3 datasets that includes both synthetic data and the filtered publicly available websites data with a focus on high-quality and reasoning dense properties. The model belongs to the Phi-3 family with the Small version in two variants 8K and 128K which is the context length (in tokens) that it can support.
The model has underwent a post-training process that incorporates both supervised fine-tuning and direct preference optimization for the instruction following and safety measures. When assessed against benchmarks testing common sense, language understanding, math, code, long context and logical reasoning, Phi-3-Small-128K-Instruct showcased a robust and state-of-the-art performance among models of the same-size and next-size-up.
Resources and Technical Documentation:
| Short Context | Long Context | |
|---|---|---|
| Mini | 4K [HF] ; [ONNX] ; [GGUF] | 128K [HF] ; [ONNX] |
| Small | 8K [HF] ; [ONNX] | 128K [HF] ; [ONNX] |
| Medium | 4K [HF] ; [ONNX] | 128K [HF] ; [ONNX] |
| Vision | 128K [HF] ; [ONNX] |
Primary use cases
The model is intended for broad commercial and research use in English. The model provides uses for general purpose AI systems and applications which require :
Our model is designed to accelerate research on language and multimodal models, for use as a building block for generative AI powered features.
Use case considerations
Our models are not specifically designed or evaluated for all downstream purposes. Developers should consider common limitations of language models as they select use cases, and evaluate and mitigate for accuracy, safety, and fariness before using within a specific downstream use case, particularly for high risk scenarios. 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.
Nothing contained in this Model Card should be interpreted as or deemed a restriction or modification to the license the model is released under.
Phi-3-Small-128K-Instruct has been integrated in the development version (4.40.2) of transformers. Until the official version is released through pip, ensure that you are doing one of the following:
Install tiktoken (0.6.0) ans triton (2.3.0)
When loading the model, ensure that trust_remote_code=True is passed as an argument of the from_pretrained() function.
Update your local transformers to the development version: pip uninstall -y transformers && pip install git+https://github.com/huggingface/transformers. The previous command is an alternative to cloning and installing from the source.
The current transformers version can be verified with: pip list | grep transformers.
Phi-3-Small-128K-Instruct is also available in Azure AI.
Phi-3-Small-128K-Instruct supports a vocabulary size of up to 100352 tokens.
Given the nature of the training data, the Phi-3-Small-128K-Instruct model is best suited for prompts using the chat format as follows. You can provide the prompt as a question with a generic template as follow:
<|endoftext|><|user|>\nQuestion <|end|>\n<|assistant|>
For example:
<|endoftext|><|user|>
How to explain Internet for a medieval knight?<|end|>
<|assistant|>
where the model generates the text after <|assistant|> . In case of few-shots prompt, the prompt can be formatted as the following:
<|endoftext|><|user|>
I am going to Paris, what should I see?<|end|>
<|assistant|>
Paris, the capital of France, is known for its stunning architecture, art museums, historical landmarks, and romantic atmosphere. Here are some of the top attractions to see in Paris:\n\n1. The Eiffel Tower: The iconic Eiffel Tower is one of the most recognizable landmarks in the world and offers breathtaking views of the city.\n2. The Louvre Museum: The Louvre is one of the world's largest and most famous museums, housing an impressive collection of art and artifacts, including the Mona Lisa.\n3. Notre-Dame Cathedral: This beautiful cathedral is one of the most famous landmarks in Paris and is known for its Gothic architecture and stunning stained glass windows.\n\nThese are just a few of the many attractions that Paris has to offer. With so much to see and do, it's no wonder that Paris is one of the most popular tourist destinations in the world."<|end|>
<|user|>
What is so great about #1?<|end|>
<|assistant|>
This code snippets show how to get quickly started with running the model on a GPU:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
torch.random.manual_seed(0)
model_id = "microsoft/Phi-3-small-128k-instruct"
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype="auto",
trust_remote_code=True,
)
assert torch.cuda.is_available(), "This model needs a GPU to run ..."
device = torch.cuda.current_device()
model = model.to(device)
tokenizer = AutoTokenizer.from_pretrained(model_id)
messages = [
{"role": "user", "content": "Can you provide ways to eat combinations of bananas and dragonfruits?"},
{"role": "assistant", "content": "Sure! Here are some ways to eat bananas and dragonfruits together: 1. Banana and dragonfruit smoothie: Blend bananas and dragonfruits together with some milk and honey. 2. Banana and dragonfruit salad: Mix sliced bananas and dragonfruits together with some lemon juice and honey."},
{"role": "user", "content": "What about solving an 2x + 3 = 7 equation?"},
]
pipe = pipeline(
"text-generation",
model=model,
tokenizer=tokenizer,
device=device
)
generation_args = {
"max_new_tokens": 500,
"return_full_text": False,
"temperature": 0.0,
"do_sample": False,
}
output = pipe(messages, **generation_args)
print(output[0]['generated_text'])
Some applications/frameworks might not include a BOS token (<|endoftext|>) at the start of the conversation. Please ensure that it is included since it provides more reliable results.
Like other language models, the Phi series models can potentially behave in ways that are unfair, unreliable, or offensive. Some of the limiting behaviors to be aware of include:
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.). Important areas for consideration include:
Our training data includes a wide variety of sources, totaling 4.8 trillion tokens (including 10% multilingual), and is a combination of
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. As an example, the result of a game in premier league in a particular day might be good training data for frontier models, but we need to remove such information to leave more model capacity for reasoning for the small size models. More details about data can be found in the Phi-3 Technical Report.
We report the results for Phi-3-Small-128K-Instruct on standard open-source benchmarks measuring the model's reasoning ability (both common sense reasoning and logical reasoning). We compare to Mixtral-8x7b, Gemini-Pro, Gemma 7B, Llama-3-8B-Instruct, GPT-3.5-Turbo-1106, and GPT-4-Turbo-1106.
All the reported numbers are produced with the exact same pipeline to ensure that the numbers are comparable. These numbers might differ from other published numbers due to slightly different choices in the evaluation.
As is now standard, we use few-shot prompts to evaluate the models, at temperature 0. The prompts and number of shots are part of a Microsoft internal tool to evaluate language models, and in particular we did no optimization to the pipeline for Phi-3. More specifically, we do not change prompts, pick different few-shot examples, change prompt format, or do any other form of optimization for the model.
The number of k–shot examples is listed per-benchmark.
| Benchmark | Phi-3-Small-128K-Instruct 7b | Gemma 7B | Mixtral 8x7B | Llama-3-Instruct 8b | GPT-3.5-Turbo version 1106 | Gemini Pro | GPT-4-Turbo version 1106 (Chat) |
|---|---|---|---|---|---|---|---|
| AGI Eval 5-shot | 43.9 | 42.1 | 45.2 | 42.0 | 48.4 | 49.0 | 59.6 |
| MMLU 5-shot | 75.5 | 63.6 | 70.5 | 66.5 | 71.4 | 66.7 | 84.0 |
| BigBench Hard 3-shot | 77.6 | 59.6 | 69.7 | 51.5 | 68.3 | 75.6 | 87.7 |
| ANLI 7-shot | 55.8 | 48.7 | 55.2 | 57.3 | 58.1 | 64.2 | 71.7 |
| HellaSwag 5-shot | 79.6 | 49.8 | 70.4 | 71.1 | 78.8 | 76.2 | 88.3 |
| ARC Challenge 10-shot | 90.8 | 78.3 | 87.3 | 82.8 | 87.4 | 88.3 | 95.6 |
| ARC Easy 10-shot | 97.3 | 91.4 | 95.6 | 93.4 | 96.3 | 96.1 | 98.8 |
| BoolQ 2-shot | 83.7 | 66.0 | 76.6 | 80.9 | 79.1 | 86.4 | 91.3 |
| CommonsenseQA 10-shot | 80.8 | 76.2 | 78.1 | 79.0 | 79.6 | 81.8 | 86.7 |
| MedQA 2-shot | 46.3 | 49.6 | 62.2 | 60.5 | 63.4 | 58.2 | 83.7 |
| OpenBookQA 10-shot | 87.8 | 78.6 | 85.8 | 82.6 | 86.0 | 86.4 | 93.4 |
| PIQA 5-shot | 88.1 | 78.1 | 86.0 | 75.7 | 86.6 | 86.2 | 90.1 |
| Social IQA 5-shot | 78.7 | 65.5 | 75.9 | 73.9 | 68.3 | 75.4 | 81.7 |
| TruthfulQA (MC2) 10-shot | 69.6 | 52.1 | 60.1 | 63.2 | 67.7 | 72.6 | 85.2 |
| WinoGrande 5-shot | 80.1 | 55.6 | 62.0 | 65.0 | 68.8 | 72.2 | 86.7 |
| TriviaQA 5-shot | 66.0 | 72.3 | 82.2 | 67.7 | 85.8 | 80.2 | 73.3 |
| GSM8K Chain of Thought 8-shot | 87.3 | 59.8 | 64.7 | 77.4 | 78.1 | 80.4 | 94.2 |
| HumanEval 0-shot | 59.1 | 34.1 | 37.8 | 60.4 | 62.2 | 64.4 | 79.9 |
| MBPP 3-shot | 70.3 | 51.5 | 60.2 | 67.7 | 77.8 | 73.2 | 86.7 |
| Average | 74.6 | 61.8 | 69.8 | 69.4 | 74.3 | 75.4 | 85.2 |
We take a closer look at different categories across 80 public benchmark datasets at the table below:
| Benchmark | Phi-3-Small-128K-Instruct 7b | Gemma 7B | Mixtral 8x7B | Llama-3-Instruct 8b | GPT-3.5-Turbo version 1106 | Gemini Pro | GPT-4-Turbo version 1106 (Chat) |
|---|---|---|---|---|---|---|---|
| Popular aggregated benchmark | 70.6 | 59.4 | 66.2 | 59.9 | 67.0 | 67.5 | 80.5 |
| Reasoning | 80.3 | 69.1 | 77.0 | 75.7 | 78.3 | 80.4 | 89.3 |
| Language understanding | 67.4 | 58.4 | 64.9 | 65.4 | 70.4 | 75.3 | 81.6 |
| Code generation | 60.0 | 45.6 | 52.7 | 56.4 | 70.4 | 66.7 | 76.1 |
| Math | 48.1 | 35.8 | 40.3 | 41.1 | 52.8 | 50.9 | 67.1 |
| Factual knowledge | 41.7 | 46.7 | 58.6 | 43.1 | 63.4 | 54.6 | 45.9 |
| Multilingual | 62.6 | 63.2 | 63.4 | 65.0 | 69.1 | 76.5 | 82.0 |
| Robustness | 68.7 | 38.4 | 51.0 | 64.5 | 69.3 | 69.7 | 84.6 |
Note that by default, the Phi-3-Small model uses flash attention 2 and Triton blocksparse attention, which requires certain types of GPU hardware to run. We have tested on the following GPU types:
If you want to run the model on:
ONNX runtime ecosystem now supports Phi3 small models across platforms and hardware.
Optimized phi-3 models are also published here in ONNX format, to run with ONNX Runtime on CPU and GPU across devices, including server platforms, Windows, Linux and Mac desktops, and mobile CPUs, with the precision best suited to each of these targets. DirectML GPU acceleration is supported for Windows desktops GPUs (AMD, Intel, and NVIDIA).
Along with DML, ONNX Runtime provides cross platform support for Phi3 Small across a range of devices CPU, GPU, and mobile.
Here are some of the optimized configurations we have added:
The model is licensed under the MIT license.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.
https://huggingface.co/microsoft/Phi-3-small-128k-instruct/blob/main/data_summary_card.md
🎉 Phi-3.5: [mini-instruct]; [MoE-instruct] ; [vision-instruct]
The Phi-3-Small-128K-Instruct is a 7B parameters, lightweight, state-of-the-art open model trained with the Phi-3 datasets that includes both synthetic data and the filtered publicly available websites data with a focus on high-quality and reasoning dense properties. The model belongs to the Phi-3 family with the Small version in two variants 8K and 128K which is the context length (in tokens) that it can support.
The model has underwent a post-training process that incorporates both supervised fine-tuning and direct preference optimization for the instruction following and safety measures. When assessed against benchmarks testing common sense, language understanding, math, code, long context and logical reasoning, Phi-3-Small-128K-Instruct showcased a robust and state-of-the-art performance among models of the same-size and next-size-up.
Resources and Technical Documentation:
| Short Context | Long Context | |
|---|---|---|
| Mini | 4K [HF] ; [ONNX] ; [GGUF] | 128K [HF] ; [ONNX] |
| Small | 8K [HF] ; [ONNX] | 128K [HF] ; [ONNX] |
| Medium | 4K [HF] ; [ONNX] | 128K [HF] ; [ONNX] |
| Vision | 128K [HF] ; [ONNX] |
Primary use cases
The model is intended for broad commercial and research use in English. The model provides uses for general purpose AI systems and applications which require :
Our model is designed to accelerate research on language and multimodal models, for use as a building block for generative AI powered features.
Use case considerations
Our models are not specifically designed or evaluated for all downstream purposes. Developers should consider common limitations of language models as they select use cases, and evaluate and mitigate for accuracy, safety, and fariness before using within a specific downstream use case, particularly for high risk scenarios. 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.
Nothing contained in this Model Card should be interpreted as or deemed a restriction or modification to the license the model is released under.
Phi-3-Small-128K-Instruct has been integrated in the development version (4.40.2) of transformers. Until the official version is released through pip, ensure that you are doing one of the following:
Install tiktoken (0.6.0) ans triton (2.3.0)
When loading the model, ensure that trust_remote_code=True is passed as an argument of the from_pretrained() function.
Update your local transformers to the development version: pip uninstall -y transformers && pip install git+https://github.com/huggingface/transformers. The previous command is an alternative to cloning and installing from the source.
The current transformers version can be verified with: pip list | grep transformers.
Phi-3-Small-128K-Instruct is also available in Azure AI.
Phi-3-Small-128K-Instruct supports a vocabulary size of up to 100352 tokens.
Given the nature of the training data, the Phi-3-Small-128K-Instruct model is best suited for prompts using the chat format as follows. You can provide the prompt as a question with a generic template as follow:
<|endoftext|><|user|>\nQuestion <|end|>\n<|assistant|>
For example:
<|endoftext|><|user|>
How to explain Internet for a medieval knight?<|end|>
<|assistant|>
where the model generates the text after <|assistant|> . In case of few-shots prompt, the prompt can be formatted as the following:
<|endoftext|><|user|>
I am going to Paris, what should I see?<|end|>
<|assistant|>
Paris, the capital of France, is known for its stunning architecture, art museums, historical landmarks, and romantic atmosphere. Here are some of the top attractions to see in Paris:\n\n1. The Eiffel Tower: The iconic Eiffel Tower is one of the most recognizable landmarks in the world and offers breathtaking views of the city.\n2. The Louvre Museum: The Louvre is one of the world's largest and most famous museums, housing an impressive collection of art and artifacts, including the Mona Lisa.\n3. Notre-Dame Cathedral: This beautiful cathedral is one of the most famous landmarks in Paris and is known for its Gothic architecture and stunning stained glass windows.\n\nThese are just a few of the many attractions that Paris has to offer. With so much to see and do, it's no wonder that Paris is one of the most popular tourist destinations in the world."<|end|>
<|user|>
What is so great about #1?<|end|>
<|assistant|>
This code snippets show how to get quickly started with running the model on a GPU:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
torch.random.manual_seed(0)
model_id = "microsoft/Phi-3-small-128k-instruct"
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype="auto",
trust_remote_code=True,
)
assert torch.cuda.is_available(), "This model needs a GPU to run ..."
device = torch.cuda.current_device()
model = model.to(device)
tokenizer = AutoTokenizer.from_pretrained(model_id)
messages = [
{"role": "user", "content": "Can you provide ways to eat combinations of bananas and dragonfruits?"},
{"role": "assistant", "content": "Sure! Here are some ways to eat bananas and dragonfruits together: 1. Banana and dragonfruit smoothie: Blend bananas and dragonfruits together with some milk and honey. 2. Banana and dragonfruit salad: Mix sliced bananas and dragonfruits together with some lemon juice and honey."},
{"role": "user", "content": "What about solving an 2x + 3 = 7 equation?"},
]
pipe = pipeline(
"text-generation",
model=model,
tokenizer=tokenizer,
device=device
)
generation_args = {
"max_new_tokens": 500,
"return_full_text": False,
"temperature": 0.0,
"do_sample": False,
}
output = pipe(messages, **generation_args)
print(output[0]['generated_text'])
Some applications/frameworks might not include a BOS token (<|endoftext|>) at the start of the conversation. Please ensure that it is included since it provides more reliable results.
Like other language models, the Phi series models can potentially behave in ways that are unfair, unreliable, or offensive. Some of the limiting behaviors to be aware of include:
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.). Important areas for consideration include:
Our training data includes a wide variety of sources, totaling 4.8 trillion tokens (including 10% multilingual), and is a combination of
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. As an example, the result of a game in premier league in a particular day might be good training data for frontier models, but we need to remove such information to leave more model capacity for reasoning for the small size models. More details about data can be found in the Phi-3 Technical Report.
We report the results for Phi-3-Small-128K-Instruct on standard open-source benchmarks measuring the model's reasoning ability (both common sense reasoning and logical reasoning). We compare to Mixtral-8x7b, Gemini-Pro, Gemma 7B, Llama-3-8B-Instruct, GPT-3.5-Turbo-1106, and GPT-4-Turbo-1106.
All the reported numbers are produced with the exact same pipeline to ensure that the numbers are comparable. These numbers might differ from other published numbers due to slightly different choices in the evaluation.
As is now standard, we use few-shot prompts to evaluate the models, at temperature 0. The prompts and number of shots are part of a Microsoft internal tool to evaluate language models, and in particular we did no optimization to the pipeline for Phi-3. More specifically, we do not change prompts, pick different few-shot examples, change prompt format, or do any other form of optimization for the model.
The number of k–shot examples is listed per-benchmark.
| Benchmark | Phi-3-Small-128K-Instruct 7b | Gemma 7B | Mixtral 8x7B | Llama-3-Instruct 8b | GPT-3.5-Turbo version 1106 | Gemini Pro | GPT-4-Turbo version 1106 (Chat) |
|---|---|---|---|---|---|---|---|
| AGI Eval 5-shot | 43.9 | 42.1 | 45.2 | 42.0 | 48.4 | 49.0 | 59.6 |
| MMLU 5-shot | 75.5 | 63.6 | 70.5 | 66.5 | 71.4 | 66.7 | 84.0 |
| BigBench Hard 3-shot | 77.6 | 59.6 | 69.7 | 51.5 | 68.3 | 75.6 | 87.7 |
| ANLI 7-shot | 55.8 | 48.7 | 55.2 | 57.3 | 58.1 | 64.2 | 71.7 |
| HellaSwag 5-shot | 79.6 | 49.8 | 70.4 | 71.1 | 78.8 | 76.2 | 88.3 |
| ARC Challenge 10-shot | 90.8 | 78.3 | 87.3 | 82.8 | 87.4 | 88.3 | 95.6 |
| ARC Easy 10-shot | 97.3 | 91.4 | 95.6 | 93.4 | 96.3 | 96.1 | 98.8 |
| BoolQ 2-shot | 83.7 | 66.0 | 76.6 | 80.9 | 79.1 | 86.4 | 91.3 |
| CommonsenseQA 10-shot | 80.8 | 76.2 | 78.1 | 79.0 | 79.6 | 81.8 | 86.7 |
| MedQA 2-shot | 46.3 | 49.6 | 62.2 | 60.5 | 63.4 | 58.2 | 83.7 |
| OpenBookQA 10-shot | 87.8 | 78.6 | 85.8 | 82.6 | 86.0 | 86.4 | 93.4 |
| PIQA 5-shot | 88.1 | 78.1 | 86.0 | 75.7 | 86.6 | 86.2 | 90.1 |
| Social IQA 5-shot | 78.7 | 65.5 | 75.9 | 73.9 | 68.3 | 75.4 | 81.7 |
| TruthfulQA (MC2) 10-shot | 69.6 | 52.1 | 60.1 | 63.2 | 67.7 | 72.6 | 85.2 |
| WinoGrande 5-shot | 80.1 | 55.6 | 62.0 | 65.0 | 68.8 | 72.2 | 86.7 |
| TriviaQA 5-shot | 66.0 | 72.3 | 82.2 | 67.7 | 85.8 | 80.2 | 73.3 |
| GSM8K Chain of Thought 8-shot | 87.3 | 59.8 | 64.7 | 77.4 | 78.1 | 80.4 | 94.2 |
| HumanEval 0-shot | 59.1 | 34.1 | 37.8 | 60.4 | 62.2 | 64.4 | 79.9 |
| MBPP 3-shot | 70.3 | 51.5 | 60.2 | 67.7 | 77.8 | 73.2 | 86.7 |
| Average | 74.6 | 61.8 | 69.8 | 69.4 | 74.3 | 75.4 | 85.2 |
We take a closer look at different categories across 80 public benchmark datasets at the table below:
| Benchmark | Phi-3-Small-128K-Instruct 7b | Gemma 7B | Mixtral 8x7B | Llama-3-Instruct 8b | GPT-3.5-Turbo version 1106 | Gemini Pro | GPT-4-Turbo version 1106 (Chat) |
|---|---|---|---|---|---|---|---|
| Popular aggregated benchmark | 70.6 | 59.4 | 66.2 | 59.9 | 67.0 | 67.5 | 80.5 |
| Reasoning | 80.3 | 69.1 | 77.0 | 75.7 | 78.3 | 80.4 | 89.3 |
| Language understanding | 67.4 | 58.4 | 64.9 | 65.4 | 70.4 | 75.3 | 81.6 |
| Code generation | 60.0 | 45.6 | 52.7 | 56.4 | 70.4 | 66.7 | 76.1 |
| Math | 48.1 | 35.8 | 40.3 | 41.1 | 52.8 | 50.9 | 67.1 |
| Factual knowledge | 41.7 | 46.7 | 58.6 | 43.1 | 63.4 | 54.6 | 45.9 |
| Multilingual | 62.6 | 63.2 | 63.4 | 65.0 | 69.1 | 76.5 | 82.0 |
| Robustness | 68.7 | 38.4 | 51.0 | 64.5 | 69.3 | 69.7 | 84.6 |
Note that by default, the Phi-3-Small model uses flash attention 2 and Triton blocksparse attention, which requires certain types of GPU hardware to run. We have tested on the following GPU types:
If you want to run the model on:
ONNX runtime ecosystem now supports Phi3 small models across platforms and hardware.
Optimized phi-3 models are also published here in ONNX format, to run with ONNX Runtime on CPU and GPU across devices, including server platforms, Windows, Linux and Mac desktops, and mobile CPUs, with the precision best suited to each of these targets. DirectML GPU acceleration is supported for Windows desktops GPUs (AMD, Intel, and NVIDIA).
Along with DML, ONNX Runtime provides cross platform support for Phi3 Small across a range of devices CPU, GPU, and mobile.
Here are some of the optimized configurations we have added:
The model is licensed under the MIT license.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.
https://huggingface.co/microsoft/Phi-3-small-128k-instruct/blob/main/data_summary_card.md