rhymes-ai / Aria-Base-64K

huggingface.co
Total runs: 50
24-hour runs: 3
7-day runs: 18
30-day runs: 16
Model's Last Updated: December 01 2024
image-text-to-text

Introduction of Aria-Base-64K

Model Details of Aria-Base-64K

Aria-Base-64K Model Card

🔗 Try Aria! · 📖 Blog · 📌 Paper · ⭐ GitHub · 🟣 Discord

This checkpoint is one of base models of Aria , designed for research purposes as well as continue training. Specifically, Aria-Base-64K corresponds to the model checkpoint after the long-context pre-training stage (boxed in purple).

Aria Training Stages

Aria-Base-64K is fine-tuned from Aria-Base-8K .

Aria-Base-64K
  • Base Model After Long-Context Pre-training : This model corresponds to the model checkpoint after the long-context pre-training stage, with 33B tokens (21B multimodal, 12B language, 69% in long-form) trained in this stage. This stage lasts 1,000 iterations, with all sequences packed to 65536 with Megatron-LM, with global batch size 512. During this training stage, the learning rate keeps constant at 3.5e-5 .
  • Appropriate for Video and Long-document Fine-tuning : This model is recommended for long-form continue pre-training or fine-tuning, e.g. on video QA datasets or long-document QA datasets. While resource is limited, it is also possible to post-train this model with short instruction tuning datasets and transfer to long-form QA scenarios.
  • Understanding on Hundreds of Images : This model is capable of understanding up to 250 high-resolution images or up to 500 mid-resolution images.
  • Strong Base Performance on Language and Multimodal Scenarios : This model retains strong base performance as Aria-Base-8K .
  • Limited Chat Template Availability : This model is trained with a very low percentage of data (around 3%) re-formatted with the chat template. Hence, it might not be optimal to be directly used with chat templates.
Quick Start
Installation
pip install transformers==4.45.0 accelerate==0.34.1 sentencepiece==0.2.0 torchvision requests torch Pillow
pip install flash-attn --no-build-isolation

# For better inference performance, you can install grouped-gemm, which may take 3-5 minutes to install
pip install grouped_gemm==0.1.6
Inference

You can use the same method as the final Aria model to load this checkpoint. However, as the base model, it might not be able to yield optimal chat performance.

import requests
import torch
from PIL import Image
from transformers import AutoModelForCausalLM, AutoProcessor

model_id_or_path = "rhymes-ai/Aria-Base-64K"

model = AutoModelForCausalLM.from_pretrained(model_id_or_path, device_map="auto", torch_dtype=torch.bfloat16, trust_remote_code=True)

processor = AutoProcessor.from_pretrained(model_id_or_path, trust_remote_code=True)

image_path = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png"

image = Image.open(requests.get(image_path, stream=True).raw)

messages = [
    {
        "role": "user",
        "content": [
            {"text": None, "type": "image"},
            {"text": "what is the image?", "type": "text"},
        ],
    }
]

text = processor.apply_chat_template(messages, add_generation_prompt=True)
inputs = processor(text=text, images=image, return_tensors="pt")
inputs["pixel_values"] = inputs["pixel_values"].to(model.dtype)
inputs = {k: v.to(model.device) for k, v in inputs.items()}

with torch.inference_mode(), torch.cuda.amp.autocast(dtype=torch.bfloat16):
    output = model.generate(
        **inputs,
        max_new_tokens=500,
        stop_strings=["<|im_end|>"],
        tokenizer=processor.tokenizer,
        do_sample=True,
        temperature=0.9,
    )
    output_ids = output[0][inputs["input_ids"].shape[1]:]
    result = processor.decode(output_ids, skip_special_tokens=True)

print(result)
Advanced Inference and Fine-tuning

We provide a codebase for more advanced usage of Aria, including vllm inference, cookbooks, and fine-tuning on custom datasets.

As it shares the same structure with the final model, you may just replace the rhymes-ai/Aria to this model path for any advanced inference and fine-tuning.

Citation

If you find our work helpful, please consider citing.

@article{aria,
  title={Aria: An Open Multimodal Native Mixture-of-Experts Model}, 
  author={Dongxu Li and Yudong Liu and Haoning Wu and Yue Wang and Zhiqi Shen and Bowen Qu and Xinyao Niu and Guoyin Wang and Bei Chen and Junnan Li},
  year={2024},
  journal={arXiv preprint arXiv:2410.05993},
}

Runs of rhymes-ai Aria-Base-64K on huggingface.co

50
Total runs
3
24-hour runs
10
3-day runs
18
7-day runs
16
30-day runs

More Information About Aria-Base-64K huggingface.co Model

More Aria-Base-64K license Visit here:

https://choosealicense.com/licenses/apache-2.0

Aria-Base-64K huggingface.co

Aria-Base-64K huggingface.co is an AI model on huggingface.co that provides Aria-Base-64K's model effect (), which can be used instantly with this rhymes-ai Aria-Base-64K model. huggingface.co supports a free trial of the Aria-Base-64K model, and also provides paid use of the Aria-Base-64K. Support call Aria-Base-64K model through api, including Node.js, Python, http.

Aria-Base-64K huggingface.co Url

https://huggingface.co/rhymes-ai/Aria-Base-64K

rhymes-ai Aria-Base-64K online free

Aria-Base-64K huggingface.co is an online trial and call api platform, which integrates Aria-Base-64K's modeling effects, including api services, and provides a free online trial of Aria-Base-64K, you can try Aria-Base-64K online for free by clicking the link below.

rhymes-ai Aria-Base-64K online free url in huggingface.co:

https://huggingface.co/rhymes-ai/Aria-Base-64K

Aria-Base-64K install

Aria-Base-64K is an open source model from GitHub that offers a free installation service, and any user can find Aria-Base-64K on GitHub to install. At the same time, huggingface.co provides the effect of Aria-Base-64K install, users can directly use Aria-Base-64K installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Aria-Base-64K install url in huggingface.co:

https://huggingface.co/rhymes-ai/Aria-Base-64K

Url of Aria-Base-64K

Aria-Base-64K huggingface.co Url

Provider of Aria-Base-64K huggingface.co

rhymes-ai
ORGANIZATIONS

Other API from rhymes-ai

huggingface.co

Total runs: 46.2K
Run Growth: -72.7K
Growth Rate: -157.35%
Updated:April 23 2025
huggingface.co

Total runs: 65
Run Growth: 12
Growth Rate: 18.46%
Updated:November 01 2024
huggingface.co

Total runs: 43
Run Growth: -215
Growth Rate: -500.00%
Updated:December 16 2024