mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 02:20:47 +00:00
add setup file to install
This commit is contained in:
parent
22d8888ca2
commit
1da2070c6f
1
__init__.py
Normal file
1
__init__.py
Normal file
@ -0,0 +1 @@
|
||||
from .minigpt4 import *
|
8
minigpt4.egg-info/PKG-INFO
Normal file
8
minigpt4.egg-info/PKG-INFO
Normal file
@ -0,0 +1,8 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: minigpt4
|
||||
Version: 0.1
|
||||
Summary: The package for minigpt4
|
||||
Author: YingzhePeng
|
||||
Author-email: yingzhepeng@foxmail.com
|
||||
License-File: LICENSE.md
|
||||
License-File: LICENSE_Lavis.md
|
47
minigpt4.egg-info/SOURCES.txt
Normal file
47
minigpt4.egg-info/SOURCES.txt
Normal file
@ -0,0 +1,47 @@
|
||||
LICENSE.md
|
||||
LICENSE_Lavis.md
|
||||
README.md
|
||||
setup.py
|
||||
minigpt4/__init__.py
|
||||
minigpt4.egg-info/PKG-INFO
|
||||
minigpt4.egg-info/SOURCES.txt
|
||||
minigpt4.egg-info/dependency_links.txt
|
||||
minigpt4.egg-info/top_level.txt
|
||||
minigpt4/common/__init__.py
|
||||
minigpt4/common/config.py
|
||||
minigpt4/common/dist_utils.py
|
||||
minigpt4/common/gradcam.py
|
||||
minigpt4/common/logger.py
|
||||
minigpt4/common/optims.py
|
||||
minigpt4/common/registry.py
|
||||
minigpt4/common/utils.py
|
||||
minigpt4/conversation/__init__.py
|
||||
minigpt4/conversation/conversation.py
|
||||
minigpt4/datasets/__init__.py
|
||||
minigpt4/datasets/data_utils.py
|
||||
minigpt4/datasets/builders/__init__.py
|
||||
minigpt4/datasets/builders/base_dataset_builder.py
|
||||
minigpt4/datasets/builders/image_text_pair_builder.py
|
||||
minigpt4/datasets/datasets/__init__.py
|
||||
minigpt4/datasets/datasets/base_dataset.py
|
||||
minigpt4/datasets/datasets/caption_datasets.py
|
||||
minigpt4/datasets/datasets/cc_sbu_dataset.py
|
||||
minigpt4/datasets/datasets/dataloader_utils.py
|
||||
minigpt4/datasets/datasets/laion_dataset.py
|
||||
minigpt4/models/Qformer.py
|
||||
minigpt4/models/__init__.py
|
||||
minigpt4/models/base_model.py
|
||||
minigpt4/models/blip2.py
|
||||
minigpt4/models/blip2_outputs.py
|
||||
minigpt4/models/eva_vit.py
|
||||
minigpt4/models/mini_gpt4.py
|
||||
minigpt4/models/modeling_llama.py
|
||||
minigpt4/processors/__init__.py
|
||||
minigpt4/processors/base_processor.py
|
||||
minigpt4/processors/blip_processors.py
|
||||
minigpt4/processors/randaugment.py
|
||||
minigpt4/runners/__init__.py
|
||||
minigpt4/runners/runner_base.py
|
||||
minigpt4/tasks/__init__.py
|
||||
minigpt4/tasks/base_task.py
|
||||
minigpt4/tasks/image_text_pretrain.py
|
1
minigpt4.egg-info/dependency_links.txt
Normal file
1
minigpt4.egg-info/dependency_links.txt
Normal file
@ -0,0 +1 @@
|
||||
|
1
minigpt4.egg-info/top_level.txt
Normal file
1
minigpt4.egg-info/top_level.txt
Normal file
@ -0,0 +1 @@
|
||||
minigpt4
|
@ -10,12 +10,12 @@ import sys
|
||||
|
||||
from omegaconf import OmegaConf
|
||||
|
||||
from minigpt4.common.registry import registry
|
||||
from .common.registry import registry
|
||||
|
||||
from minigpt4.datasets.builders import *
|
||||
from minigpt4.models import *
|
||||
from minigpt4.processors import *
|
||||
from minigpt4.tasks import *
|
||||
from .datasets.builders import *
|
||||
from .models import *
|
||||
from .processors import *
|
||||
from .tasks import *
|
||||
|
||||
|
||||
root_dir = os.path.dirname(os.path.abspath(__file__))
|
||||
|
BIN
minigpt4/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/common/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/common/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/common/__pycache__/config.cpython-38.pyc
Normal file
BIN
minigpt4/common/__pycache__/config.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/common/__pycache__/dist_utils.cpython-38.pyc
Normal file
BIN
minigpt4/common/__pycache__/dist_utils.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/common/__pycache__/logger.cpython-38.pyc
Normal file
BIN
minigpt4/common/__pycache__/logger.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/common/__pycache__/registry.cpython-38.pyc
Normal file
BIN
minigpt4/common/__pycache__/registry.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/common/__pycache__/utils.cpython-38.pyc
Normal file
BIN
minigpt4/common/__pycache__/utils.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/conversation/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/conversation/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/conversation/__pycache__/conversation.cpython-38.pyc
Normal file
BIN
minigpt4/conversation/__pycache__/conversation.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/datasets/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/datasets/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/datasets/__pycache__/data_utils.cpython-38.pyc
Normal file
BIN
minigpt4/datasets/__pycache__/data_utils.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/datasets/builders/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/datasets/builders/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
minigpt4/datasets/datasets/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/datasets/datasets/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
minigpt4/models/__pycache__/Qformer.cpython-38.pyc
Normal file
BIN
minigpt4/models/__pycache__/Qformer.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/models/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/models/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/models/__pycache__/base_model.cpython-38.pyc
Normal file
BIN
minigpt4/models/__pycache__/base_model.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/models/__pycache__/blip2.cpython-38.pyc
Normal file
BIN
minigpt4/models/__pycache__/blip2.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/models/__pycache__/eva_vit.cpython-38.pyc
Normal file
BIN
minigpt4/models/__pycache__/eva_vit.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/models/__pycache__/mini_gpt4.cpython-38.pyc
Normal file
BIN
minigpt4/models/__pycache__/mini_gpt4.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/models/__pycache__/modeling_llama.cpython-38.pyc
Normal file
BIN
minigpt4/models/__pycache__/modeling_llama.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/processors/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/processors/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/processors/__pycache__/base_processor.cpython-38.pyc
Normal file
BIN
minigpt4/processors/__pycache__/base_processor.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/processors/__pycache__/blip_processors.cpython-38.pyc
Normal file
BIN
minigpt4/processors/__pycache__/blip_processors.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/processors/__pycache__/randaugment.cpython-38.pyc
Normal file
BIN
minigpt4/processors/__pycache__/randaugment.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/tasks/__pycache__/__init__.cpython-38.pyc
Normal file
BIN
minigpt4/tasks/__pycache__/__init__.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/tasks/__pycache__/base_task.cpython-38.pyc
Normal file
BIN
minigpt4/tasks/__pycache__/base_task.cpython-38.pyc
Normal file
Binary file not shown.
BIN
minigpt4/tasks/__pycache__/image_text_pretrain.cpython-38.pyc
Normal file
BIN
minigpt4/tasks/__pycache__/image_text_pretrain.cpython-38.pyc
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user