gitextract_pa_vjz81/ ├── .gitignore ├── LICENSE ├── README.md ├── lib/ │ ├── customize_layers/ │ │ ├── __init__.py │ │ └── concat_layer.py │ ├── rel_data_layer/ │ │ ├── __init__.py │ │ └── layer.py │ └── utils/ │ ├── __init__.py │ └── eval_utils.py ├── prototxts/ │ ├── drnet_8units_linear_shareweight.prototxt │ ├── drnet_8units_relu_shareweight.prototxt │ ├── drnet_8units_softmax.prototxt │ ├── test_drnet_8units_linear_shareweight.prototxt │ ├── test_drnet_8units_relu_shareweight.prototxt │ └── test_drnet_8units_softmax.prototxt ├── snapshots/ │ └── README.md └── tools/ ├── _init_paths.py ├── eval_triplet_recall.py ├── eval_union_recall.py ├── prepare_data.py ├── test_predicate_recognition.py └── test_triplet_detection.py