moondream 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: moondream
3
+ Version: 1.0.0
4
+ Summary: 1.6B parameter model built by @vikhyatk using SigLIP, Phi-1.5 and the LLaVa training dataset.
5
+ Home-page: UNKNOWN
6
+ Author: 1997marsrover
7
+ Author-email: antonygithinji11156@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+
11
+ UNKNOWN
12
+
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: moondream
3
+ Version: 1.0.0
4
+ Summary: 1.6B parameter model built by @vikhyatk using SigLIP, Phi-1.5 and the LLaVa training dataset.
5
+ Home-page: UNKNOWN
6
+ Author: 1997marsrover
7
+ Author-email: antonygithinji11156@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+
11
+ UNKNOWN
12
+
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ moondream.egg-info/PKG-INFO
3
+ moondream.egg-info/SOURCES.txt
4
+ moondream.egg-info/dependency_links.txt
5
+ moondream.egg-info/requires.txt
6
+ moondream.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ PIL
2
+ logging
3
+ transformers
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,15 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='moondream',
5
+ version='1.0.0',
6
+ description='1.6B parameter model built by @vikhyatk using SigLIP, Phi-1.5 and the LLaVa training dataset. ',
7
+ author='1997marsrover',
8
+ author_email='antonygithinji11156@gmail.com',
9
+ packages=find_packages(),
10
+ install_requires=[
11
+ 'transformers',
12
+ 'logging',
13
+ 'PIL'
14
+ ],
15
+ )