Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation Issues with Demo Notebook #110

Open
raviy0807 opened this issue Apr 24, 2024 · 2 comments
Open

Installation Issues with Demo Notebook #110

raviy0807 opened this issue Apr 24, 2024 · 2 comments

Comments

@raviy0807
Copy link

raviy0807 commented Apr 24, 2024

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

  • Unclear Python Version Compatibility

  • Dependency Conflicts in YAML
    Problem: Conflicting dependencies are present in the provided YAML file.
    Proposed Solution: Update the YAML file to ensure all dependencies are compatible.

  • Unavailable Package in Requirements
    Problem: The package petrel_oss_sdk==v2.2.1_2_g1505ef3_master listed in the requirements file cannot be found.

Demo Notebook Issues

  • for relative import add following code in the code ( add ur folder path)
    import sys sys.path.append('path_of_your_repo_multi_modality_folder')
  • Import Errors in Demo Notebook
    Problem: Issues with importing .easydict due to ambiguity whether it's a package or a module import.
    Proposed Solution: Change the import statement in the notebook to from utils.easydict import EasyDict.
  • Directory Naming Consistency
    Problem: The directory named utils is sometimes referred to as util, causing import errors.
    Proposed Solution: Standardize the directory name to utils across all references and documentation.
  • Hardware-Specific Configuration for Flash Attention
    Problem: Flash Attention error resolution only applicable for NVIDIA A100 GPUs and above, unclear implementation.
    Proposed Solution: Implement a conditional import based on the use_fused_rmsnorm flag to handle different hardware configurations:
    python
if use_fused_rmsnorm:
    from flash_attn.ops.rms_norm import DropoutAddRMSNorm
  • Missing peft Package
    Problem: The peft package is not included in the initial setup but is required.
    Proposed Solution: Add pip install peft to the installation instructions.
  • BERT Tokenizer Path Issue
    Problem: BERT tokenizer is set to use a local path that is undefined.
    Proposed Solution: Specify the correct path to the tokenizer files or update the setting to not require use_local.
  • Configuration File Path Error
    Problem: Path error for config_bert_large.json leading to 'No such file or directory'.
    Proposed Solution: Ensure that config['TextEncoders']['bert_large']['config'] uses an absolute path to the configuration file.
@shepnerd
Copy link
Member

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

@chinmayad
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants