-
Notifications
You must be signed in to change notification settings - Fork 794
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from msaroufim/msaroufim/imagebindlib
ImageBind as a Library
- Loading branch information
Showing
10 changed files
with
34 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from imagebind import data | ||
from imagebind.models import imagebind_model | ||
from imagebind.models.imagebind_model import ModalityType |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('requirements.txt') as f: | ||
required = f.read().splitlines() | ||
|
||
setup( | ||
name='imagebind', | ||
version='0.1.0', | ||
packages=find_packages(), | ||
description='A brief description of the package', | ||
long_description=open('README.md').read(), | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/facebookresearch/ImageBind', | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
'License :: Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International', | ||
], | ||
install_requires=required, | ||
dependency_links=['https://download.pytorch.org/whl/cu113'], | ||
) |