gitextract_g04l91uk/ ├── .github/ │ └── workflows/ │ ├── pylint.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── batch_generate_example.py ├── gradio_demo.py ├── moondream/ │ ├── __init__.py │ ├── config/ │ │ ├── config_md05.json │ │ └── config_md2.json │ ├── eval/ │ │ ├── chartqa.py │ │ ├── coco_map.py │ │ ├── countbenchqa.py │ │ ├── docvqa.py │ │ ├── eval_all.py │ │ ├── gazefollow.py │ │ ├── mmstar.py │ │ ├── naturalbench.py │ │ ├── pope.py │ │ ├── realworldqa.py │ │ ├── tallyqa.py │ │ ├── textvqa.py │ │ ├── utils.py │ │ └── waste_detection.py │ └── torch/ │ ├── config.py │ ├── hf_moondream.py │ ├── hf_release.py │ ├── image_crops.py │ ├── layers.py │ ├── lora.py │ ├── moondream.py │ ├── region.py │ ├── rope.py │ ├── sample.py │ ├── text.py │ ├── utils.py │ ├── vision.py │ └── weights.py ├── notebooks/ │ └── RepEng.ipynb ├── recipes/ │ ├── gaze-detection-video/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── gaze-detection-video.py │ │ ├── input/ │ │ │ └── .gitkeep │ │ ├── output/ │ │ │ └── .gitkeep │ │ ├── requirements.txt │ │ └── temp/ │ │ └── .gitkeep │ ├── promptable-content-moderation/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app.py │ │ ├── deep_sort_integration.py │ │ ├── main.py │ │ ├── packages.txt │ │ ├── persistence.py │ │ ├── requirements.txt │ │ ├── video_visualization.py │ │ └── visualization.py │ └── promptable-video-redaction/ │ ├── .gitignore │ ├── README.md │ ├── app.py │ ├── main.py │ ├── packages.txt │ └── requirements.txt ├── requirements.txt ├── sample.py ├── tests/ │ └── test_image_crops.py └── webcam_gradio_demo.py