Model reference · open weights
Infinity-0625-Yi-1.5 is an open-weight language model from BAAI. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | BAAI |
|---|---|
| Type | Language models |
| Task | Text gen |
| Parameters (lead) | 8.8B |
| Context | 4k tokens |
| Runs with | transformers |
| Released | 2024-07-09 |
| Popularity | 8k downloads / month |
| Licence | Open weights |
About
Infinity-Instruct-3M-0625-Yi-1.5-9B is an opensource supervised instruction tuning model without reinforcement learning from human feedback (RLHF). This model is just finetuned on Infinity-Instruct-3M and Infinity-Instruct-0625 and showing favorable results on AlpacaEval 2.0 and MT-Bench.
🔥🔥🔥[2024/07/09] We release the model weights of InfInstruct-Mistral-7B 0625, InfInstruct-Qwen2-7B 0625, InfInstruct-Llama3-8B 0625, InfInstruct-Llama3-70B 0625, and InfInstruct-Yi-1.5-9B 0625.
🔥🔥🔥[2024/07/09] We release the chat dataset Infinity-Instruct-0625, it is a upgraded version of the Infinity-Instruct-0613.
🔥🔥🔥[2024/06/28] We release the model weight of InfInstruct-Llama3-70B 0613. It shows favorable results on AlpacaEval 2.0 compared to GPT4-0613 without RLHF.
🔥🔥🔥[2024/06/21] We release the model weight of InfInstruct-Mistral-7B 0613. It shows favorable results on AlpacaEval 2.0 compared to Mixtral 8x7B v0.1, Gemini Pro, and GPT-3.5 without RLHF.
🔥🔥🔥[2024/06/13] We share the intermediate result of our data construction process (corresponding to the InfInstruct-3M in the table below). Our ongoing efforts focus on risk assessment and data generation. The finalized version with 10 million instructions is scheduled for release in late June.
Infinity-Instruct-3M-0625-Yi-1.5-9B is tuned on Million-level instruction dataset Infinity-Instruct. First, we apply the foundational dataset Infinity-Instruct-3M to improve the foundational ability (math & code) of Yi-1.5-9B, and get the foundational instruct model Infinity-Instruct-3M-Yi-1.5-9B. Then we finetune the Infinity-Instruct-3M-Yi-1.5-9B to get the stronger chat model Infinity-Instruct-3M-0625-Yi-1.5-9B. Here is the training hyperparamers.
epoch: 3
lr: 1e-5
min_lr: 0
lr_warmup_steps: 40
lr_decay_style: cosine
weight_decay: 0.0
adam_beta1: 0.9
adam_beta2: 0.95
global_batch_size: 528
clip_grad: 1.0
Thanks to FlagScale, we could concatenate multiple training samples to remove padding token and apply diverse acceleration techniques to the traning procudure. It effectively reduces our training costs. We will release our code in the near future!
| Model | MT-Bench | AlpacaEval2.0 |
|---|---|---|
| OpenHermes-2.5-Mistral-7B* | 7.5 | 16.2 |
| Mistral-7B-Instruct-v0.2 | 7.6 | 17.1 |
| Llama-3-8B-Instruct | 8.1 | 22.9 |
| Yi-1.5-9B-Chat | 8.2 | 22.9 |
| InfInstruct-3M-0625-Yi-1.5-9B* | 8.0 | 20.5 |
*denote the model is finetuned without reinforcement learning from human feedback (RLHF).
We evaluate Infinity-Instruct-3M-0625-Yi-1.5-9B on the two most popular instructions following benchmarks. Mt-Bench is a set of challenging multi-turn questions including code, math and routine dialogue. AlpacaEval2.0 is based on AlpacaFarm evaluation set. Both of these two benchmarks use GPT-4 to judge the model answer. AlpacaEval2.0 displays a high agreement rate with human-annotated benchmark, Chatbot Arena.
Infinity-Instruct-3M-0625-Yi-1.5-9B adopt the same chat template of Yi-1.5-9B-Chat:
How are you?
Hi!
How are you?
To apply this model and template in conversation scenarios, you can refer to the following code:
from transformers import AutoModelForCausalLM, AutoTokenizer, LogitsProcessorList
import torch
device = "cuda" # the device to load the model onto
model = AutoModelForCausalLM.from_pretrained("BAAI/Infinity-Instruct-3M-0625-Yi-1.5-9B",
torch_dtype=torch.bfloat16,
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("BAAI/Infinity-Instruct-3M-0625-Yi-1.5-9B")
prompt = "Give me a short introduction to large language model."
messages = [
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(device)
logits_processor = LogitsProcessorList(
[
MinLengthLogitsProcessor(1, eos_token_id=tokenizer.eos_token_id),
TemperatureLogitsWarper(0.7),
]
)
generated_ids = model.generate(
model_inputs.input_ids,
logits_processor=logits_processor,
max_new_tokens=512
)
generated_ids = [
output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(response)
The resources, including code, data, and model weights, associated with this project are restricted for academic research purposes only and cannot be used for commercial purposes. The content produced by any version of Infinity Instruct is influenced by uncontrollable variables such as randomness, and therefore, the accuracy of the output cannot be guaranteed by this project. This project does not accept any legal liability for the content of the model output, nor does it assume responsibility for any l
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys infinity-0625-yi-1-5 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (infinity-0625-yi-1-5 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"infinity-0625-yi-1-5","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.