├── README.md ├── data ├── deskew.jpg └── object_map.csv ├── graph_operator.py ├── grapher.py ├── layers.py ├── model.png ├── models.py ├── object_map_generation.py ├── outputs ├── Thumbs.db ├── connections.csv └── object_tree.jpg ├── requirements.txt ├── test_read.py ├── text_utils.py └── unit tests ├── test adjacency layer ├── adjacency_layer.py └── test_adjacency_layer.py ├── test graph operator ├── test_graph_operator.py └── test_read.py └── test text utils └── test_get_text_features.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/README.md -------------------------------------------------------------------------------- /data/deskew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/data/deskew.jpg -------------------------------------------------------------------------------- /data/object_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/data/object_map.csv -------------------------------------------------------------------------------- /graph_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/graph_operator.py -------------------------------------------------------------------------------- /grapher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/grapher.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/layers.py -------------------------------------------------------------------------------- /model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/model.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/models.py -------------------------------------------------------------------------------- /object_map_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/object_map_generation.py -------------------------------------------------------------------------------- /outputs/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/outputs/Thumbs.db -------------------------------------------------------------------------------- /outputs/connections.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/outputs/connections.csv -------------------------------------------------------------------------------- /outputs/object_tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/outputs/object_tree.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/test_read.py -------------------------------------------------------------------------------- /text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/text_utils.py -------------------------------------------------------------------------------- /unit tests/test adjacency layer/adjacency_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/unit tests/test adjacency layer/adjacency_layer.py -------------------------------------------------------------------------------- /unit tests/test adjacency layer/test_adjacency_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/unit tests/test adjacency layer/test_adjacency_layer.py -------------------------------------------------------------------------------- /unit tests/test graph operator/test_graph_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/unit tests/test graph operator/test_graph_operator.py -------------------------------------------------------------------------------- /unit tests/test graph operator/test_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/unit tests/test graph operator/test_read.py -------------------------------------------------------------------------------- /unit tests/test text utils/test_get_text_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhavalpotdar/Graph-Convolution-on-Structured-Documents/HEAD/unit tests/test text utils/test_get_text_features.py --------------------------------------------------------------------------------