├── .gitignore ├── LICENSE ├── README.md ├── arg_parser.py ├── config ├── gclr.json ├── hgclr.json └── hill.json ├── data ├── nyt │ ├── data_nyt.py │ ├── idnewnyt_test.json │ ├── idnewnyt_train.json │ ├── idnewnyt_val.json │ ├── nyt.taxonomy │ └── nyt_label.vocab ├── rcv1 │ ├── data_rcv1.py │ ├── preprocess_rcv1.py │ └── rcv1.taxonomy └── wos │ ├── data_wos.py │ └── preprocess_wos.py ├── eval.py ├── model ├── coding_tree.py ├── contrast.py ├── graph.py ├── hill.py └── optim.py ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/README.md -------------------------------------------------------------------------------- /arg_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/arg_parser.py -------------------------------------------------------------------------------- /config/gclr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/config/gclr.json -------------------------------------------------------------------------------- /config/hgclr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/config/hgclr.json -------------------------------------------------------------------------------- /config/hill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/config/hill.json -------------------------------------------------------------------------------- /data/nyt/data_nyt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/nyt/data_nyt.py -------------------------------------------------------------------------------- /data/nyt/idnewnyt_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/nyt/idnewnyt_test.json -------------------------------------------------------------------------------- /data/nyt/idnewnyt_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/nyt/idnewnyt_train.json -------------------------------------------------------------------------------- /data/nyt/idnewnyt_val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/nyt/idnewnyt_val.json -------------------------------------------------------------------------------- /data/nyt/nyt.taxonomy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/nyt/nyt.taxonomy -------------------------------------------------------------------------------- /data/nyt/nyt_label.vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/nyt/nyt_label.vocab -------------------------------------------------------------------------------- /data/rcv1/data_rcv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/rcv1/data_rcv1.py -------------------------------------------------------------------------------- /data/rcv1/preprocess_rcv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/rcv1/preprocess_rcv1.py -------------------------------------------------------------------------------- /data/rcv1/rcv1.taxonomy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/rcv1/rcv1.taxonomy -------------------------------------------------------------------------------- /data/wos/data_wos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/wos/data_wos.py -------------------------------------------------------------------------------- /data/wos/preprocess_wos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/data/wos/preprocess_wos.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/eval.py -------------------------------------------------------------------------------- /model/coding_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/model/coding_tree.py -------------------------------------------------------------------------------- /model/contrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/model/contrast.py -------------------------------------------------------------------------------- /model/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/model/graph.py -------------------------------------------------------------------------------- /model/hill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/model/hill.py -------------------------------------------------------------------------------- /model/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/model/optim.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rooooyy/HILL/HEAD/utils.py --------------------------------------------------------------------------------