├── .gitignore ├── README.md ├── data └── temp.py ├── data_reader.py ├── get_structures.py ├── main.py ├── models ├── DocumentClassificationModel.py ├── DocumentClassificationModelCNN.py └── modules │ ├── BiLSTMEncoder.py │ ├── CNNEncoder.py │ └── StructuredAttention.py ├── prepare_data.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/README.md -------------------------------------------------------------------------------- /data/temp.py: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /data_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/data_reader.py -------------------------------------------------------------------------------- /get_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/get_structures.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/main.py -------------------------------------------------------------------------------- /models/DocumentClassificationModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/models/DocumentClassificationModel.py -------------------------------------------------------------------------------- /models/DocumentClassificationModelCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/models/DocumentClassificationModelCNN.py -------------------------------------------------------------------------------- /models/modules/BiLSTMEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/models/modules/BiLSTMEncoder.py -------------------------------------------------------------------------------- /models/modules/CNNEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/models/modules/CNNEncoder.py -------------------------------------------------------------------------------- /models/modules/StructuredAttention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/models/modules/StructuredAttention.py -------------------------------------------------------------------------------- /prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/prepare_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vidhishanair/structured-text-representations/HEAD/requirements.txt --------------------------------------------------------------------------------