Framework Inference

User Guide (Latest Version)

When using VideoNeVA models, the inference script generates responses for all prompts specified in an input .jsonl file. Here’s an example of what an input file might look like:

Copy
Copied!
            

{"video": "001.mp4", "prompt": "What is the name of this famous sight in the video?\n<video>", "category": "conv", "question_id": 0} {"video": "001.mp4", "prompt": "Describe this clip in detail.\n<video>", "category": "detail", "question_id": 1} {"video": "001.mp4", "prompt": "What are the possible reasons for the formation of this sight?\n<video>", "category": "complex", "question_id": 2} ...

The crucial fields within each line are “image” and “prompt.” The trained VideoNeVA model will generate responses for each line, which can be viewed both on the console and in the output file.

To facilitate inference with VideoNeVA, follow the configuration steps in this section.

  1. In the defaults section of conf/config.yaml, adjust the fw_inference field to reference the NeVA inference configuration file you want. For instance, to use the neva/inference.yaml configuration, modify the inference field to video_neva/fw_inference:

    Copy
    Copied!
                

    defaults: - fw_inference: video_neva/inference ...

  2. In the stages section of conf/config.yaml, ensure the fw_inference stage is present:

    Copy
    Copied!
                

    stages: - fw_inference ...

  3. Inside conf/fw_inference/video_neva/inference.yaml, configure the paths for prompt_file, inference.media_base_path, neva_model_file and base_model_file and to correctly point to the locations relevant to your inference task. The linear weights from NeVa model pretraining should also be accurately referenced under neva_model_file and your LLM should be referenced under base_model_file.

    Copy
    Copied!
                

    inference: media_base_path: /path/to/videos_associate_with_prompt_file/ prompt_file: /path/to/input_jsonl_file.jsonl neva_model_file: /path/to/trained_neva_checkpoint.nemo base_model_file: /path/to/base_model.nemo

  4. Execute the launcher pipeline: python3 main.py

Remarks:

  1. Ensure the value of run.model_train_name corresponds to the appropriate model size, either video_neva_llama2_7b_chat or video_neva_llama2_13b_chat.

  2. Ensure the tensor model parallel sizes are correctly assigned. By default, the 7B model uses tensor_model_parallel_size=4, while the 13B model uses tensor_model_parallel_size=8.

This section outlines the steps to set up and use a Gradio server for interacting with NeMo models. Follow these instructions after entering the NeMo container environment.

Set Up the Server

  1. Edit the configuration server.

    • Navigate to the server script at /opt/NeMo/examples/multimodal/multimodal_llm/neva/eval/gradio_server.py.

    • Update the script with the correct configurations and the path to your Neva model.

  2. Install Gradio.

    • Run the following command to install Gradio:

      Copy
      Copied!
                  

      pip install gradio

  3. Set the environment variables and launch the server.

    • Set the necessary environment variables and start the Gradio server with the following commands:

      export NVTE_FLASH_ATTN=0 export NVTE_FUSED_ATTN=0 python /opt/NeMo/examples/multimodal/multimodal_llm/neva/eval/gradio_server.py

Query the Server

  • Once the server is up and running, you can query it using a Python Gradio client.

  • The client sends text and image data as base64 encoded strings.

For an example of how to structure your client queries, refer to the script at /opt/NeMo/examples/multimodal/multimodal_llm/neva/eval/gradio_cli.py.

Previous Training with Predefined Configurations
Next Performance
© | | | | | | |. Last updated on Jun 24, 2024.