OpenGVLab / InternVideo

[ECCV2024] Video Foundation Models & Data for Multimodal Understanding
Apache License 2.0
1.34k stars 85 forks source link

Installation Issues with Demo Notebook #110

Open raviy0807 opened 5 months ago

raviy0807 commented 5 months ago

While attempting to set up and run the demo notebook from the repository, I encountered multiple issues related to environment setup, package dependencies, and code configurations that significantly hindered progress. This issue aims to document these problems and propose solutions to aid in troubleshooting and improving the setup process for all users.

Environment Python Version: 3.9 Operating System: ubuntu 20

Issues and Proposed Resolutions

Demo Notebook Issues

shepnerd commented 5 months ago

Thank you for your feedback. We will address your mentioned issues soon.

chinmayad commented 5 months ago

Getting this error while installing requirements for Internvideo2 multimodality. ERROR: Could not find a version that satisfies the requirement petrel_oss_sdk==v2.2.1_2_g1505ef3_master (from versions: none) ERROR: No matching distribution found for petrel_oss_sdk==v2.2.1_2_g1505ef3_master

belamarib commented 3 months ago

I'm having the same issues with the relative imports regarding the following lines:

from config import (Config,
                    eval_dict_leaf)

from utils import (retrieve_text,
                  _frame_from_video,
                  setup_internvideo2)

I've tried the sys.path.append code, adding an init.py file and other strategies and nothing worked

bdager commented 2 months ago

Hi there, I'm still not able to solve the BERT tokenizer path error. I'm trying to run the demo.py and currently I'm getting this error:

raise EnvironmentError(
OSError: Can't load tokenizer for 'bert-large-uncased'. If you were trying to load it from 'https://huggingface.co/models', make sure you don't have a local directory with the same name. Otherwise, make sure 'bert-large-uncased' is the correct path to a directory containing all relevant files for a BertTokenizer tokenizer.

I'm providing a local path to the model: InternVideo2-Stage2_1B-224p-f4.pt (), in the script: multi_modality/demo/internvideo2_stage2_config.py

So, I am not sure if I am providing the correct model or it is another problem what is causing the above error.

Any help or idea would be very valuable and appreciate it :) Thanks you so much in advance