├── .gitignore ├── README.md ├── __init__.py ├── assets ├── demo-1.jpg ├── demo-2.jpg ├── demo-3.jpg ├── demo-4.jpg ├── demo-5.jpg ├── nodes.png └── nodes2.png ├── download_models.py ├── gradio_demo.py ├── moondream ├── __init__.py ├── configuration_moondream.py ├── modeling_phi.py ├── moondream.py ├── phi │ ├── configuration_phi.py │ └── modeling_phi.py ├── text_model.py ├── util.py └── vision_encoder.py ├── nodes └── MoondreamNode.py ├── requirements.txt └── sample.py /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | __pycache__ 3 | checkpoints 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/demo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/assets/demo-1.jpg -------------------------------------------------------------------------------- /assets/demo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/assets/demo-2.jpg -------------------------------------------------------------------------------- /assets/demo-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/assets/demo-3.jpg -------------------------------------------------------------------------------- /assets/demo-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/assets/demo-4.jpg -------------------------------------------------------------------------------- /assets/demo-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/assets/demo-5.jpg -------------------------------------------------------------------------------- /assets/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/assets/nodes.png -------------------------------------------------------------------------------- /assets/nodes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/assets/nodes2.png -------------------------------------------------------------------------------- /download_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/download_models.py -------------------------------------------------------------------------------- /gradio_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/gradio_demo.py -------------------------------------------------------------------------------- /moondream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/__init__.py -------------------------------------------------------------------------------- /moondream/configuration_moondream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/configuration_moondream.py -------------------------------------------------------------------------------- /moondream/modeling_phi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/modeling_phi.py -------------------------------------------------------------------------------- /moondream/moondream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/moondream.py -------------------------------------------------------------------------------- /moondream/phi/configuration_phi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/phi/configuration_phi.py -------------------------------------------------------------------------------- /moondream/phi/modeling_phi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/phi/modeling_phi.py -------------------------------------------------------------------------------- /moondream/text_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/text_model.py -------------------------------------------------------------------------------- /moondream/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/util.py -------------------------------------------------------------------------------- /moondream/vision_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/moondream/vision_encoder.py -------------------------------------------------------------------------------- /nodes/MoondreamNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/nodes/MoondreamNode.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/comfyui-moondream/HEAD/sample.py --------------------------------------------------------------------------------