├── LICENSE ├── README.md ├── data └── README.md ├── img └── Img.png ├── main.py └── src ├── data ├── transforms.py └── vid_aud_lrw.py └── models ├── audio_front.py ├── classifier.py ├── memory.py ├── resnet.py └── visual_front.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | Put the pre-trained checkpoint -------------------------------------------------------------------------------- /img/Img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/img/Img.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/main.py -------------------------------------------------------------------------------- /src/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/src/data/transforms.py -------------------------------------------------------------------------------- /src/data/vid_aud_lrw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/src/data/vid_aud_lrw.py -------------------------------------------------------------------------------- /src/models/audio_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/src/models/audio_front.py -------------------------------------------------------------------------------- /src/models/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/src/models/classifier.py -------------------------------------------------------------------------------- /src/models/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/src/models/memory.py -------------------------------------------------------------------------------- /src/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/src/models/resnet.py -------------------------------------------------------------------------------- /src/models/visual_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-dot-k/Visual-Audio-Memory/HEAD/src/models/visual_front.py --------------------------------------------------------------------------------