├── .gitignore ├── README.md ├── app.py ├── data └── processed │ ├── test │ ├── 1.jpg │ └── 2.jpg │ ├── train │ ├── An unmodified iRobot Create with Command Module.jpg │ ├── Braava 380t damp cleaning.jpg │ ├── Damro tea.jpg │ ├── Roomba_805_charging dock.jpg │ ├── Vacuum Cleaner.JPG │ ├── Washing Machine.jpg │ ├── captions.csv │ ├── coffee machine.jpg │ └── television maker.jpg │ └── val │ ├── Vacuum Cleaner.JPG │ ├── Washing Machine.jpg │ └── television maker.jpg ├── make_csv.py ├── requirements.txt └── src ├── CLIP.py ├── config.py ├── dataset.py ├── modules.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *myenv 2 | *models 3 | *__pycache__ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/app.py -------------------------------------------------------------------------------- /data/processed/test/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/test/1.jpg -------------------------------------------------------------------------------- /data/processed/test/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/test/2.jpg -------------------------------------------------------------------------------- /data/processed/train/An unmodified iRobot Create with Command Module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/An unmodified iRobot Create with Command Module.jpg -------------------------------------------------------------------------------- /data/processed/train/Braava 380t damp cleaning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/Braava 380t damp cleaning.jpg -------------------------------------------------------------------------------- /data/processed/train/Damro tea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/Damro tea.jpg -------------------------------------------------------------------------------- /data/processed/train/Roomba_805_charging dock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/Roomba_805_charging dock.jpg -------------------------------------------------------------------------------- /data/processed/train/Vacuum Cleaner.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/Vacuum Cleaner.JPG -------------------------------------------------------------------------------- /data/processed/train/Washing Machine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/Washing Machine.jpg -------------------------------------------------------------------------------- /data/processed/train/captions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/captions.csv -------------------------------------------------------------------------------- /data/processed/train/coffee machine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/coffee machine.jpg -------------------------------------------------------------------------------- /data/processed/train/television maker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/train/television maker.jpg -------------------------------------------------------------------------------- /data/processed/val/Vacuum Cleaner.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/val/Vacuum Cleaner.JPG -------------------------------------------------------------------------------- /data/processed/val/Washing Machine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/val/Washing Machine.jpg -------------------------------------------------------------------------------- /data/processed/val/television maker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/data/processed/val/television maker.jpg -------------------------------------------------------------------------------- /make_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/make_csv.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/CLIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/src/CLIP.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/src/config.py -------------------------------------------------------------------------------- /src/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/src/dataset.py -------------------------------------------------------------------------------- /src/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/src/modules.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/src/train.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noel319/CLIP_detection/HEAD/src/utils.py --------------------------------------------------------------------------------