├── .gitignore ├── README.md ├── data_vqa ├── README.md ├── feature_extract.py ├── preprocess_data.py └── process_function.py ├── expt └── README.md └── src ├── README.md ├── data_processing_vqa.py ├── data_provision_att_vqa.py ├── log.py ├── optimization_weight.py ├── san_att_conv_twolayer.py ├── san_att_conv_twolayer_theano.py ├── san_att_lstm_twolayer.py └── san_att_lstm_twolayer_theano.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/README.md -------------------------------------------------------------------------------- /data_vqa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/data_vqa/README.md -------------------------------------------------------------------------------- /data_vqa/feature_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/data_vqa/feature_extract.py -------------------------------------------------------------------------------- /data_vqa/preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/data_vqa/preprocess_data.py -------------------------------------------------------------------------------- /data_vqa/process_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/data_vqa/process_function.py -------------------------------------------------------------------------------- /expt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/expt/README.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/README.md -------------------------------------------------------------------------------- /src/data_processing_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/data_processing_vqa.py -------------------------------------------------------------------------------- /src/data_provision_att_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/data_provision_att_vqa.py -------------------------------------------------------------------------------- /src/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/log.py -------------------------------------------------------------------------------- /src/optimization_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/optimization_weight.py -------------------------------------------------------------------------------- /src/san_att_conv_twolayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/san_att_conv_twolayer.py -------------------------------------------------------------------------------- /src/san_att_conv_twolayer_theano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/san_att_conv_twolayer_theano.py -------------------------------------------------------------------------------- /src/san_att_lstm_twolayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/san_att_lstm_twolayer.py -------------------------------------------------------------------------------- /src/san_att_lstm_twolayer_theano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcyang/imageqa-san/HEAD/src/san_att_lstm_twolayer_theano.py --------------------------------------------------------------------------------