BAAI / Infinity-Instruct-7M-Gen-Llama3_1-70B

huggingface.co
Total runs: 179
24-hour runs: 0
7-day runs: 32
30-day runs: 53
Model's Last Updated: August 11 2024
text-generation

Introduction of Infinity-Instruct-7M-Gen-Llama3_1-70B

Model Details of Infinity-Instruct-7M-Gen-Llama3_1-70B

Infinity Instruct

Beijing Academy of Artificial Intelligence (BAAI)
[Paper][Code][🤗] (would be released soon)

Infinity-Instruct-7M-Gen-Llama3.1-70B is an opensource supervised instruction tuning model without reinforcement learning from human feedback (RLHF). This model is just finetuned on Infinity-Instruct-7M and Infinity-Instruct-Gen and showing favorable results on AlpacaEval 2.0 and arena-hard compared to GPT4.

News
Training Details

Infinity-Instruct-7M-Gen-Llama3.1-70B is tuned on Million-level instruction dataset Infinity-Instruct . First, we apply the foundational dataset Infinity-Instruct-7M to improve the foundational ability (math & code) of Llama3.1-70B, and get the foundational instruct model Infinity-Instruct-7M-Llama3-70B. Then we finetune the Infinity-Instruct-7M-Llama3-70B to get the stronger chat model Infinity-Instruct-7M-Gen-Llama3_1-70B. Here is the training hyperparamers.

epoch: 3
lr: 5e-6
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!

Benchmark
Model MT-Bench AlpacaEval2.0 Arena-hard
GPT-4-0314 9.0 35.3 50.0
GPT-4-0613 9.2 30.2 37.9
GPT-4-1106 9.3 30.2 --
Llama-3-70B-Instruct 9.0 34.4 46.6
Llama-3.1-8B-Instruct -- 20.9 20.6
Llama-3.1-70B-Instruct -- 38.1 55.7
Llama-3.1-405B-Instruct -- 39.3 64.1
InfInstruct-7M-Llama-3.1-8B 8.2 33.9 30.4
InfInstruct-3M-0613-Llama-3-70B 8.7 31.5 --
InfInstruct-3M-0625-Llama-3-70B 8.9 38.0 --
InfInstruct-3M-Gen-Llama-3.1-70B 8.9 46.1 66.0

*denote the model is finetuned without reinforcement learning from human feedback (RLHF).

How to use

Infinity-Instruct-7M-Gen-Llama3_1-70B adopt the same chat template of Llama3-70B-instruct :

<|begin_of_text|><|start_header_id|>user<|end_header_id|>

How are you?<|eot_id|><|start_header_id|>assistant<|end_header_id|>

Hi!<|eot_id|><|start_header_id|>user<|end_header_id|>

How are you?<|eot_id|><|start_header_id|>assistant<|end_header_id|>

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-7M-Gen-Llama3_1-70B",
    torch_dtype=torch.bfloat16,
    device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("BAAI/Infinity-Instruct-7M-Gen-Llama3_1-70B")

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)
Disclaimer

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 losses incurred due to the use of associated resources and output results.

Citation

Our paper, detailing the development and features of the Infinity Instruct dataset and finetuned models, will be released soon on arXiv. Stay tuned!

@article{InfinityInstruct2024,
  title={Infinity Instruct},
  author={Beijing Academy of Artificial Intelligence (BAAI)},
  journal={arXiv preprint arXiv:2406.XXXX},
  year={2024}
}

Runs of BAAI Infinity-Instruct-7M-Gen-Llama3_1-70B on huggingface.co

179
Total runs
0
24-hour runs
11
3-day runs
32
7-day runs
53
30-day runs

More Information About Infinity-Instruct-7M-Gen-Llama3_1-70B huggingface.co Model

More Infinity-Instruct-7M-Gen-Llama3_1-70B license Visit here:

https://choosealicense.com/licenses/llama3.1

Infinity-Instruct-7M-Gen-Llama3_1-70B huggingface.co

Infinity-Instruct-7M-Gen-Llama3_1-70B huggingface.co is an AI model on huggingface.co that provides Infinity-Instruct-7M-Gen-Llama3_1-70B's model effect (), which can be used instantly with this BAAI Infinity-Instruct-7M-Gen-Llama3_1-70B model. huggingface.co supports a free trial of the Infinity-Instruct-7M-Gen-Llama3_1-70B model, and also provides paid use of the Infinity-Instruct-7M-Gen-Llama3_1-70B. Support call Infinity-Instruct-7M-Gen-Llama3_1-70B model through api, including Node.js, Python, http.

Infinity-Instruct-7M-Gen-Llama3_1-70B huggingface.co Url

https://huggingface.co/BAAI/Infinity-Instruct-7M-Gen-Llama3_1-70B

BAAI Infinity-Instruct-7M-Gen-Llama3_1-70B online free

Infinity-Instruct-7M-Gen-Llama3_1-70B huggingface.co is an online trial and call api platform, which integrates Infinity-Instruct-7M-Gen-Llama3_1-70B's modeling effects, including api services, and provides a free online trial of Infinity-Instruct-7M-Gen-Llama3_1-70B, you can try Infinity-Instruct-7M-Gen-Llama3_1-70B online for free by clicking the link below.

BAAI Infinity-Instruct-7M-Gen-Llama3_1-70B online free url in huggingface.co:

https://huggingface.co/BAAI/Infinity-Instruct-7M-Gen-Llama3_1-70B

Infinity-Instruct-7M-Gen-Llama3_1-70B install

Infinity-Instruct-7M-Gen-Llama3_1-70B is an open source model from GitHub that offers a free installation service, and any user can find Infinity-Instruct-7M-Gen-Llama3_1-70B on GitHub to install. At the same time, huggingface.co provides the effect of Infinity-Instruct-7M-Gen-Llama3_1-70B install, users can directly use Infinity-Instruct-7M-Gen-Llama3_1-70B installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Infinity-Instruct-7M-Gen-Llama3_1-70B install url in huggingface.co:

https://huggingface.co/BAAI/Infinity-Instruct-7M-Gen-Llama3_1-70B

Url of Infinity-Instruct-7M-Gen-Llama3_1-70B

Infinity-Instruct-7M-Gen-Llama3_1-70B huggingface.co Url

Provider of Infinity-Instruct-7M-Gen-Llama3_1-70B huggingface.co

BAAI
ORGANIZATIONS

Other API from BAAI

huggingface.co

Total runs: 64.3M
Run Growth: -6.6M
Growth Rate: -10.32%
Updated:February 22 2024
huggingface.co

Total runs: 37.8M
Run Growth: 3.7M
Growth Rate: 9.69%
Updated:July 03 2024
huggingface.co

Total runs: 12.8M
Run Growth: 622.5K
Growth Rate: 4.86%
Updated:February 21 2024
huggingface.co

Total runs: 10.6M
Run Growth: -274.5K
Growth Rate: -2.59%
Updated:February 21 2024
huggingface.co

Total runs: 2.2M
Run Growth: 1.7M
Growth Rate: 77.46%
Updated:April 17 2024
huggingface.co

Total runs: 795.3K
Run Growth: -726.2K
Growth Rate: -91.32%
Updated:October 12 2023
huggingface.co

Total runs: 228.9K
Run Growth: -1.3M
Growth Rate: -582.76%
Updated:December 13 2023
huggingface.co

Total runs: 59.2K
Run Growth: -116.7K
Growth Rate: -197.13%
Updated:October 12 2023
huggingface.co

Total runs: 51.4K
Run Growth: -43.1K
Growth Rate: -83.89%
Updated:October 12 2023
huggingface.co

Total runs: 46.2K
Run Growth: 22.7K
Growth Rate: 49.08%
Updated:November 14 2023
huggingface.co

Total runs: 42.7K
Run Growth: 25.1K
Growth Rate: 58.90%
Updated:October 12 2023
huggingface.co

Total runs: 37.4K
Run Growth: -24.8K
Growth Rate: -66.13%
Updated:January 15 2025
huggingface.co

Total runs: 15.9K
Run Growth: 1.3K
Growth Rate: 8.46%
Updated:April 16 2025
huggingface.co

Total runs: 11.1K
Run Growth: -15.2K
Growth Rate: -136.62%
Updated:October 12 2023
huggingface.co

Total runs: 5.5K
Run Growth: 4.9K
Growth Rate: 89.62%
Updated:April 19 2024
huggingface.co

Total runs: 4.6K
Run Growth: -10.5K
Growth Rate: -231.70%
Updated:May 20 2025
huggingface.co

Total runs: 3.4K
Run Growth: 2.2K
Growth Rate: 69.80%
Updated:September 11 2026
huggingface.co

Total runs: 1.8K
Run Growth: 1.2K
Growth Rate: 63.98%
Updated:December 31 2022
huggingface.co

Total runs: 1.7K
Run Growth: -13.5K
Growth Rate: -793.18%
Updated:January 15 2025
huggingface.co

Total runs: 1.5K
Run Growth: -851
Growth Rate: -61.31%
Updated:April 10 2026
huggingface.co

Total runs: 1.4K
Run Growth: -859
Growth Rate: -59.61%
Updated:April 10 2026
huggingface.co

Total runs: 1.2K
Run Growth: 259
Growth Rate: 20.72%
Updated:September 11 2026
huggingface.co

Total runs: 1.2K
Run Growth: 547
Growth Rate: 45.24%
Updated:October 23 2024
huggingface.co

Total runs: 1.2K
Run Growth: -283
Growth Rate: -23.98%
Updated:November 28 2024
huggingface.co

Total runs: 1.1K
Run Growth: -33
Growth Rate: -2.92%
Updated:February 07 2024
huggingface.co

Total runs: 1.0K
Run Growth: 782
Growth Rate: 75.05%
Updated:October 24 2024
huggingface.co

Total runs: 799
Run Growth: 37
Growth Rate: 4.63%
Updated:May 23 2025
huggingface.co

Total runs: 594
Run Growth: -175
Growth Rate: -29.46%
Updated:July 13 2026
huggingface.co

Total runs: 478
Run Growth: -87
Growth Rate: -18.20%
Updated:July 13 2026
huggingface.co

Total runs: 465
Run Growth: 186
Growth Rate: 39.57%
Updated:April 10 2026
huggingface.co

Total runs: 428
Run Growth: -134
Growth Rate: -31.31%
Updated:October 27 2023
huggingface.co

Total runs: 405
Run Growth: -622
Growth Rate: -153.58%
Updated:April 18 2023
huggingface.co

Total runs: 394
Run Growth: -544
Growth Rate: -136.68%
Updated:August 11 2026
huggingface.co

Total runs: 389
Run Growth: -6
Growth Rate: -1.55%
Updated:August 11 2026
huggingface.co

Total runs: 381
Run Growth: -242
Growth Rate: -62.21%
Updated:December 25 2025
huggingface.co

Total runs: 321
Run Growth: 59
Growth Rate: 18.38%
Updated:July 13 2026
huggingface.co

Total runs: 317
Run Growth: 131
Growth Rate: 41.32%
Updated:July 13 2026
huggingface.co

Total runs: 291
Run Growth: 211
Growth Rate: 72.51%
Updated:August 18 2026
huggingface.co

Total runs: 290
Run Growth: -149
Growth Rate: -51.38%
Updated:March 07 2024
huggingface.co

Total runs: 287
Run Growth: 97
Growth Rate: 33.80%
Updated:July 13 2026
huggingface.co

Total runs: 285
Run Growth: -602
Growth Rate: -211.23%
Updated:December 25 2025
huggingface.co

Total runs: 285
Run Growth: -3.4K
Growth Rate: -1128.48%
Updated:April 10 2026
huggingface.co

Total runs: 260
Run Growth: -11
Growth Rate: -3.94%
Updated:April 10 2026
huggingface.co

Total runs: 257
Run Growth: 10
Growth Rate: 3.94%
Updated:February 11 2025
huggingface.co

Total runs: 218
Run Growth: -145
Growth Rate: -69.05%
Updated:July 17 2026
huggingface.co

Total runs: 207
Run Growth: -70
Growth Rate: -32.86%
Updated:June 06 2025
huggingface.co

Total runs: 207
Run Growth: -71
Growth Rate: -34.30%
Updated:July 13 2026
huggingface.co

Total runs: 206
Run Growth: -103
Growth Rate: -50.00%
Updated:October 23 2024
huggingface.co

Total runs: 187
Run Growth: -59
Growth Rate: -31.55%
Updated:July 13 2026
huggingface.co

Total runs: 187
Run Growth: 39
Growth Rate: 20.86%
Updated:April 02 2024
huggingface.co

Total runs: 181
Run Growth: 66
Growth Rate: 36.46%
Updated:July 13 2026
huggingface.co

Total runs: 176
Run Growth: -170
Growth Rate: -96.59%
Updated:May 13 2024
huggingface.co

Total runs: 166
Run Growth: 67
Growth Rate: 40.36%
Updated:August 23 2023
huggingface.co

Total runs: 165
Run Growth: -30
Growth Rate: -18.18%
Updated:May 13 2024
huggingface.co

Total runs: 165
Run Growth: -38
Growth Rate: -21.59%
Updated:April 10 2026
huggingface.co

Total runs: 164
Run Growth: -28
Growth Rate: -17.07%
Updated:May 13 2024
huggingface.co

Total runs: 164
Run Growth: -33
Growth Rate: -20.12%
Updated:May 31 2024
huggingface.co

Total runs: 160
Run Growth: -993
Growth Rate: -620.63%
Updated:June 24 2024
huggingface.co

Total runs: 152
Run Growth: 147
Growth Rate: 100.00%
Updated:September 05 2026
huggingface.co

Total runs: 148
Run Growth: -45
Growth Rate: -30.41%
Updated:July 13 2026
huggingface.co

Total runs: 146
Run Growth: 34
Growth Rate: 23.29%
Updated:July 13 2026
huggingface.co

Total runs: 138
Run Growth: 56
Growth Rate: 41.48%
Updated:March 13 2026