├── LICENSE ├── README.md ├── data └── data.txt ├── images └── waveforms.png ├── proc_audio.py ├── requirements.txt ├── results └── results.txt ├── src ├── __init__.py ├── data.py ├── gcn.py ├── gcntfilm.py ├── rnn.py ├── training.py └── utils.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/README.md -------------------------------------------------------------------------------- /data/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/data/data.txt -------------------------------------------------------------------------------- /images/waveforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/images/waveforms.png -------------------------------------------------------------------------------- /proc_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/proc_audio.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/results.txt: -------------------------------------------------------------------------------- 1 | here go the results from training -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/src/data.py -------------------------------------------------------------------------------- /src/gcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/src/gcn.py -------------------------------------------------------------------------------- /src/gcntfilm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/src/gcntfilm.py -------------------------------------------------------------------------------- /src/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/src/rnn.py -------------------------------------------------------------------------------- /src/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/src/training.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/src/utils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcomunita/gcn-tfilm/HEAD/train.py --------------------------------------------------------------------------------