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.
- moondream-1.0.0/PKG-INFO +12 -0
- moondream-1.0.0/moondream.egg-info/PKG-INFO +12 -0
- moondream-1.0.0/moondream.egg-info/SOURCES.txt +6 -0
- moondream-1.0.0/moondream.egg-info/dependency_links.txt +1 -0
- moondream-1.0.0/moondream.egg-info/requires.txt +3 -0
- moondream-1.0.0/moondream.egg-info/top_level.txt +1 -0
- moondream-1.0.0/setup.cfg +4 -0
- moondream-1.0.0/setup.py +15 -0
moondream-1.0.0/PKG-INFO
ADDED
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
moondream-1.0.0/setup.py
ADDED
|
@@ -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
|
+
)
|