├── LICENSE ├── README.md ├── bin ├── __init__.py ├── autoint.py ├── danet │ ├── DAN_Task.py │ ├── LICENSE │ ├── README.md │ ├── abstract_model.py │ ├── baseline_exp.sh │ ├── config │ │ ├── adult-28.yaml │ │ ├── california-28.yaml │ │ ├── churn-28.yaml │ │ ├── default.py │ │ ├── eye-28.yaml │ │ ├── fb-comments-28.yaml │ │ ├── gesture-28.yaml │ │ ├── helena-28.yaml │ │ ├── higgs-small-28.yaml │ │ ├── house-28.yaml │ │ ├── jannis-28.yaml │ │ ├── otto-28.yaml │ │ └── year-28.yaml │ ├── data │ │ ├── data_util.py │ │ └── dataset.py │ ├── lib │ │ ├── callbacks.py │ │ ├── logger.py │ │ ├── metrics.py │ │ ├── multiclass_utils.py │ │ └── utils.py │ ├── mixup_exp.sh │ ├── model │ │ ├── AcceleratedModule.py │ │ ├── DANet.py │ │ └── sparsemax.py │ ├── predict.py │ └── requirements.txt ├── dcn2.py ├── ffn.py ├── ft_transformer.py ├── grownet.py ├── mlp.py ├── node.py ├── resnet.py ├── snn.py ├── t2g_former.py └── tabnet.py ├── configs ├── adult │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ ├── TabNet │ │ └── cfg.json │ └── XGBoost │ │ └── cfg.json ├── california │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── GEPTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ ├── TabNet │ │ └── cfg.json │ └── XGBoost │ │ └── cfg.json ├── churn │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ └── XGBoost │ │ ├── cfg-tmp.json │ │ └── cfg.json ├── covtype │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ ├── TabNet │ │ └── cfg.json │ └── XGBoost │ │ └── cfg.json ├── default │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── RandomForest │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ ├── TabNet │ │ └── cfg.json │ └── XGBoost │ │ └── cfg.json ├── eye │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ └── XGBoost │ │ ├── cfg-tmp.json │ │ └── cfg.json ├── fb-comments │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ └── XGBoost │ │ ├── cfg-tmp.json │ │ └── cfg.json ├── gesture │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ └── XGBoost │ │ ├── cfg-tmp.json │ │ └── cfg.json ├── helena │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ ├── TabNet │ │ └── cfg.json │ └── XGBoost │ │ └── cfg.json ├── higgs-small │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ ├── TabNet │ │ └── cfg.json │ └── XGBoost │ │ └── cfg.json ├── house │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ └── XGBoost │ │ ├── cfg-tmp.json │ │ └── cfg.json ├── jannis │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ ├── TabNet │ │ └── cfg.json │ └── XGBoost │ │ └── cfg.json ├── microsoft │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ ├── TabNet │ │ └── cfg.json │ └── XGBoost │ │ └── cfg.json ├── otto │ ├── AutoInt │ │ └── cfg.json │ ├── DCNv2 │ │ └── cfg.json │ ├── FTTransformer │ │ └── cfg.json │ ├── MLP │ │ └── cfg.json │ ├── NODE │ │ └── cfg.json │ ├── ResNet │ │ └── cfg.json │ ├── SNN │ │ └── cfg.json │ ├── T2GFormer │ │ └── cfg.json │ └── XGBoost │ │ ├── cfg-tmp.json │ │ └── cfg.json └── year │ ├── AutoInt │ └── cfg.json │ ├── DCNv2 │ └── cfg.json │ ├── FTTransformer │ └── cfg.json │ ├── MLP │ └── cfg.json │ ├── NODE │ └── cfg.json │ ├── ResNet │ └── cfg.json │ ├── SNN │ └── cfg.json │ ├── T2GFormer │ └── cfg.json │ ├── TabNet │ └── cfg.json │ └── XGBoost │ └── cfg.json ├── lib ├── __init__.py ├── data.py ├── deep.py ├── env.py ├── loss.py ├── metrics.py ├── node │ ├── __init__.py │ ├── arch.py │ ├── nn_utils.py │ ├── odst.py │ └── utils.py └── util.py ├── requirements.txt ├── results ├── AutoInt │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json ├── DANets-28 │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json ├── DCNv2 │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json ├── FTTransformer │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json ├── MLP │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json ├── NODE │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json ├── SNN │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json ├── T2GFormer │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 109 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ ├── 0.json │ │ │ └── 2.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ ├── 0.json │ │ │ └── 2.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json ├── TabNet │ ├── adult │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── california │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── churn │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── eye │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── fb-comments │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── gesture │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── helena │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── higgs-small │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── house │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── jannis │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ ├── otto │ │ ├── 20 │ │ │ └── 0.json │ │ ├── 31 │ │ │ └── 0.json │ │ ├── 42 │ │ │ └── 0.json │ │ ├── 53 │ │ │ └── 0.json │ │ ├── 64 │ │ │ └── 0.json │ │ ├── 75 │ │ │ └── 0.json │ │ ├── 86 │ │ │ └── 0.json │ │ ├── 97 │ │ │ └── 0.json │ │ ├── 108 │ │ │ └── 0.json │ │ ├── 119 │ │ │ └── 0.json │ │ ├── 130 │ │ │ └── 0.json │ │ ├── 141 │ │ │ └── 0.json │ │ ├── 152 │ │ │ └── 0.json │ │ ├── 163 │ │ │ └── 0.json │ │ └── 174 │ │ │ └── 0.json │ └── year │ │ ├── 20 │ │ └── 0.json │ │ ├── 31 │ │ └── 0.json │ │ ├── 42 │ │ └── 0.json │ │ ├── 53 │ │ └── 0.json │ │ ├── 64 │ │ └── 0.json │ │ ├── 75 │ │ └── 0.json │ │ ├── 86 │ │ └── 0.json │ │ ├── 97 │ │ └── 0.json │ │ ├── 108 │ │ └── 0.json │ │ ├── 119 │ │ └── 0.json │ │ ├── 130 │ │ └── 0.json │ │ ├── 141 │ │ └── 0.json │ │ ├── 152 │ │ └── 0.json │ │ ├── 163 │ │ └── 0.json │ │ └── 174 │ │ └── 0.json └── XGBoost │ ├── adult │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── california │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── churn │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── eye │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── fb-comments │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── gesture │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── helena │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── higgs-small │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── house │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── jannis │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ ├── otto │ ├── 20 │ │ └── 0.json │ ├── 31 │ │ └── 0.json │ ├── 42 │ │ └── 0.json │ ├── 53 │ │ └── 0.json │ ├── 64 │ │ └── 0.json │ ├── 75 │ │ └── 0.json │ ├── 86 │ │ └── 0.json │ ├── 97 │ │ └── 0.json │ ├── 108 │ │ └── 0.json │ ├── 119 │ │ └── 0.json │ ├── 130 │ │ └── 0.json │ ├── 141 │ │ └── 0.json │ ├── 152 │ │ └── 0.json │ ├── 163 │ │ └── 0.json │ └── 174 │ │ └── 0.json │ └── year │ ├── 20 │ └── 0.json │ ├── 31 │ └── 0.json │ ├── 42 │ └── 0.json │ ├── 53 │ └── 0.json │ ├── 64 │ └── 0.json │ ├── 75 │ └── 0.json │ ├── 86 │ └── 0.json │ ├── 97 │ └── 0.json │ ├── 108 │ └── 0.json │ ├── 119 │ └── 0.json │ ├── 130 │ └── 0.json │ ├── 141 │ └── 0.json │ ├── 152 │ └── 0.json │ ├── 163 │ └── 0.json │ └── 174 │ └── 0.json ├── run_baselines.py ├── run_danets.py ├── run_experiment ├── run_baselines.sh └── tune_baselines.sh ├── run_t2g.py ├── run_tf_tabnet.py ├── run_xgboost.py ├── tune_baselines.py ├── tune_t2g.py └── tune_xgboost.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/README.md -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/__init__.py -------------------------------------------------------------------------------- /bin/autoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/autoint.py -------------------------------------------------------------------------------- /bin/danet/DAN_Task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/DAN_Task.py -------------------------------------------------------------------------------- /bin/danet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/LICENSE -------------------------------------------------------------------------------- /bin/danet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/README.md -------------------------------------------------------------------------------- /bin/danet/abstract_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/abstract_model.py -------------------------------------------------------------------------------- /bin/danet/baseline_exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/baseline_exp.sh -------------------------------------------------------------------------------- /bin/danet/config/adult-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/adult-28.yaml -------------------------------------------------------------------------------- /bin/danet/config/churn-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/churn-28.yaml -------------------------------------------------------------------------------- /bin/danet/config/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/default.py -------------------------------------------------------------------------------- /bin/danet/config/eye-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/eye-28.yaml -------------------------------------------------------------------------------- /bin/danet/config/gesture-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/gesture-28.yaml -------------------------------------------------------------------------------- /bin/danet/config/helena-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/helena-28.yaml -------------------------------------------------------------------------------- /bin/danet/config/house-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/house-28.yaml -------------------------------------------------------------------------------- /bin/danet/config/jannis-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/jannis-28.yaml -------------------------------------------------------------------------------- /bin/danet/config/otto-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/otto-28.yaml -------------------------------------------------------------------------------- /bin/danet/config/year-28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/config/year-28.yaml -------------------------------------------------------------------------------- /bin/danet/data/data_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/data/data_util.py -------------------------------------------------------------------------------- /bin/danet/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/data/dataset.py -------------------------------------------------------------------------------- /bin/danet/lib/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/lib/callbacks.py -------------------------------------------------------------------------------- /bin/danet/lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/lib/logger.py -------------------------------------------------------------------------------- /bin/danet/lib/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/lib/metrics.py -------------------------------------------------------------------------------- /bin/danet/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/lib/utils.py -------------------------------------------------------------------------------- /bin/danet/mixup_exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/mixup_exp.sh -------------------------------------------------------------------------------- /bin/danet/model/DANet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/model/DANet.py -------------------------------------------------------------------------------- /bin/danet/model/sparsemax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/model/sparsemax.py -------------------------------------------------------------------------------- /bin/danet/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/danet/predict.py -------------------------------------------------------------------------------- /bin/danet/requirements.txt: -------------------------------------------------------------------------------- 1 | torch>=1.4.0 2 | category_encoders 3 | yacs 4 | tensorboard>=2.2.2 5 | qhoptim -------------------------------------------------------------------------------- /bin/dcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/dcn2.py -------------------------------------------------------------------------------- /bin/ffn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/ffn.py -------------------------------------------------------------------------------- /bin/ft_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/ft_transformer.py -------------------------------------------------------------------------------- /bin/grownet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/grownet.py -------------------------------------------------------------------------------- /bin/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/mlp.py -------------------------------------------------------------------------------- /bin/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/node.py -------------------------------------------------------------------------------- /bin/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/resnet.py -------------------------------------------------------------------------------- /bin/snn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/snn.py -------------------------------------------------------------------------------- /bin/t2g_former.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/t2g_former.py -------------------------------------------------------------------------------- /bin/tabnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/bin/tabnet.py -------------------------------------------------------------------------------- /configs/adult/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/adult/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/adult/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/MLP/cfg.json -------------------------------------------------------------------------------- /configs/adult/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/NODE/cfg.json -------------------------------------------------------------------------------- /configs/adult/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/adult/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/SNN/cfg.json -------------------------------------------------------------------------------- /configs/adult/T2GFormer/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/T2GFormer/cfg.json -------------------------------------------------------------------------------- /configs/adult/TabNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/TabNet/cfg.json -------------------------------------------------------------------------------- /configs/adult/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/adult/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/california/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/california/MLP/cfg.json -------------------------------------------------------------------------------- /configs/california/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/california/NODE/cfg.json -------------------------------------------------------------------------------- /configs/california/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/california/SNN/cfg.json -------------------------------------------------------------------------------- /configs/churn/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/churn/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/churn/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/churn/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/churn/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/churn/MLP/cfg.json -------------------------------------------------------------------------------- /configs/churn/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/churn/NODE/cfg.json -------------------------------------------------------------------------------- /configs/churn/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/churn/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/churn/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/churn/SNN/cfg.json -------------------------------------------------------------------------------- /configs/churn/T2GFormer/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/churn/T2GFormer/cfg.json -------------------------------------------------------------------------------- /configs/churn/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/churn/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/covtype/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/covtype/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/covtype/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/covtype/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/covtype/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/covtype/MLP/cfg.json -------------------------------------------------------------------------------- /configs/covtype/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/covtype/NODE/cfg.json -------------------------------------------------------------------------------- /configs/covtype/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/covtype/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/covtype/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/covtype/SNN/cfg.json -------------------------------------------------------------------------------- /configs/covtype/TabNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/covtype/TabNet/cfg.json -------------------------------------------------------------------------------- /configs/covtype/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/covtype/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/default/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/default/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/default/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/default/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/default/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/default/MLP/cfg.json -------------------------------------------------------------------------------- /configs/default/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/default/NODE/cfg.json -------------------------------------------------------------------------------- /configs/default/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/default/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/default/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/default/SNN/cfg.json -------------------------------------------------------------------------------- /configs/default/TabNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/default/TabNet/cfg.json -------------------------------------------------------------------------------- /configs/default/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/default/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/eye/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/eye/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/eye/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/MLP/cfg.json -------------------------------------------------------------------------------- /configs/eye/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/NODE/cfg.json -------------------------------------------------------------------------------- /configs/eye/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/eye/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/SNN/cfg.json -------------------------------------------------------------------------------- /configs/eye/T2GFormer/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/T2GFormer/cfg.json -------------------------------------------------------------------------------- /configs/eye/XGBoost/cfg-tmp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/XGBoost/cfg-tmp.json -------------------------------------------------------------------------------- /configs/eye/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/eye/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/fb-comments/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/fb-comments/MLP/cfg.json -------------------------------------------------------------------------------- /configs/fb-comments/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/fb-comments/SNN/cfg.json -------------------------------------------------------------------------------- /configs/gesture/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/gesture/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/gesture/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/gesture/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/gesture/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/gesture/MLP/cfg.json -------------------------------------------------------------------------------- /configs/gesture/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/gesture/NODE/cfg.json -------------------------------------------------------------------------------- /configs/gesture/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/gesture/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/gesture/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/gesture/SNN/cfg.json -------------------------------------------------------------------------------- /configs/gesture/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/gesture/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/helena/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/helena/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/helena/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/helena/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/helena/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/helena/MLP/cfg.json -------------------------------------------------------------------------------- /configs/helena/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/helena/NODE/cfg.json -------------------------------------------------------------------------------- /configs/helena/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/helena/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/helena/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/helena/SNN/cfg.json -------------------------------------------------------------------------------- /configs/helena/TabNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/helena/TabNet/cfg.json -------------------------------------------------------------------------------- /configs/helena/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/helena/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/higgs-small/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/higgs-small/MLP/cfg.json -------------------------------------------------------------------------------- /configs/higgs-small/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/higgs-small/SNN/cfg.json -------------------------------------------------------------------------------- /configs/house/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/house/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/house/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/house/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/house/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/house/MLP/cfg.json -------------------------------------------------------------------------------- /configs/house/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/house/NODE/cfg.json -------------------------------------------------------------------------------- /configs/house/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/house/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/house/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/house/SNN/cfg.json -------------------------------------------------------------------------------- /configs/house/T2GFormer/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/house/T2GFormer/cfg.json -------------------------------------------------------------------------------- /configs/house/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/house/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/jannis/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/jannis/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/jannis/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/jannis/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/jannis/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/jannis/MLP/cfg.json -------------------------------------------------------------------------------- /configs/jannis/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/jannis/NODE/cfg.json -------------------------------------------------------------------------------- /configs/jannis/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/jannis/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/jannis/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/jannis/SNN/cfg.json -------------------------------------------------------------------------------- /configs/jannis/TabNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/jannis/TabNet/cfg.json -------------------------------------------------------------------------------- /configs/jannis/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/jannis/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/microsoft/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/microsoft/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/microsoft/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/microsoft/MLP/cfg.json -------------------------------------------------------------------------------- /configs/microsoft/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/microsoft/NODE/cfg.json -------------------------------------------------------------------------------- /configs/microsoft/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/microsoft/SNN/cfg.json -------------------------------------------------------------------------------- /configs/otto/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/otto/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/otto/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/otto/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/otto/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/otto/MLP/cfg.json -------------------------------------------------------------------------------- /configs/otto/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/otto/NODE/cfg.json -------------------------------------------------------------------------------- /configs/otto/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/otto/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/otto/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/otto/SNN/cfg.json -------------------------------------------------------------------------------- /configs/otto/T2GFormer/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/otto/T2GFormer/cfg.json -------------------------------------------------------------------------------- /configs/otto/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/otto/XGBoost/cfg.json -------------------------------------------------------------------------------- /configs/year/AutoInt/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/AutoInt/cfg.json -------------------------------------------------------------------------------- /configs/year/DCNv2/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/DCNv2/cfg.json -------------------------------------------------------------------------------- /configs/year/MLP/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/MLP/cfg.json -------------------------------------------------------------------------------- /configs/year/NODE/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/NODE/cfg.json -------------------------------------------------------------------------------- /configs/year/ResNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/ResNet/cfg.json -------------------------------------------------------------------------------- /configs/year/SNN/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/SNN/cfg.json -------------------------------------------------------------------------------- /configs/year/T2GFormer/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/T2GFormer/cfg.json -------------------------------------------------------------------------------- /configs/year/TabNet/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/TabNet/cfg.json -------------------------------------------------------------------------------- /configs/year/XGBoost/cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/configs/year/XGBoost/cfg.json -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/data.py -------------------------------------------------------------------------------- /lib/deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/deep.py -------------------------------------------------------------------------------- /lib/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/env.py -------------------------------------------------------------------------------- /lib/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/loss.py -------------------------------------------------------------------------------- /lib/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/metrics.py -------------------------------------------------------------------------------- /lib/node/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/node/__init__.py -------------------------------------------------------------------------------- /lib/node/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/node/arch.py -------------------------------------------------------------------------------- /lib/node/nn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/node/nn_utils.py -------------------------------------------------------------------------------- /lib/node/odst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/node/odst.py -------------------------------------------------------------------------------- /lib/node/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/node/utils.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/lib/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/AutoInt/adult/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/108/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/119/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/130/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/141/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/152/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/163/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/174/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/20/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/31/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/42/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/53/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/64/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/75/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/86/0.json -------------------------------------------------------------------------------- /results/AutoInt/adult/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/adult/97/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/108/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/119/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/130/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/141/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/152/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/163/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/174/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/20/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/31/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/42/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/53/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/64/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/75/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/86/0.json -------------------------------------------------------------------------------- /results/AutoInt/churn/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/churn/97/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/108/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/119/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/130/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/141/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/152/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/163/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/174/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/20/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/31/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/42/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/53/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/64/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/75/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/86/0.json -------------------------------------------------------------------------------- /results/AutoInt/eye/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/eye/97/0.json -------------------------------------------------------------------------------- /results/AutoInt/helena/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/helena/20/0.json -------------------------------------------------------------------------------- /results/AutoInt/helena/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/helena/31/0.json -------------------------------------------------------------------------------- /results/AutoInt/helena/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/helena/42/0.json -------------------------------------------------------------------------------- /results/AutoInt/helena/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/helena/53/0.json -------------------------------------------------------------------------------- /results/AutoInt/helena/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/helena/64/0.json -------------------------------------------------------------------------------- /results/AutoInt/helena/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/helena/75/0.json -------------------------------------------------------------------------------- /results/AutoInt/helena/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/helena/86/0.json -------------------------------------------------------------------------------- /results/AutoInt/helena/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/helena/97/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/108/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/119/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/130/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/141/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/152/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/163/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/174/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/20/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/31/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/42/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/53/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/64/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/75/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/86/0.json -------------------------------------------------------------------------------- /results/AutoInt/house/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/house/97/0.json -------------------------------------------------------------------------------- /results/AutoInt/jannis/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/jannis/20/0.json -------------------------------------------------------------------------------- /results/AutoInt/jannis/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/jannis/31/0.json -------------------------------------------------------------------------------- /results/AutoInt/jannis/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/jannis/42/0.json -------------------------------------------------------------------------------- /results/AutoInt/jannis/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/jannis/53/0.json -------------------------------------------------------------------------------- /results/AutoInt/jannis/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/jannis/64/0.json -------------------------------------------------------------------------------- /results/AutoInt/jannis/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/jannis/75/0.json -------------------------------------------------------------------------------- /results/AutoInt/jannis/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/jannis/86/0.json -------------------------------------------------------------------------------- /results/AutoInt/jannis/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/jannis/97/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/108/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/119/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/130/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/141/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/152/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/163/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/174/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/20/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/31/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/42/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/53/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/64/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/75/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/86/0.json -------------------------------------------------------------------------------- /results/AutoInt/otto/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/otto/97/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/108/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/119/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/130/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/141/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/152/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/163/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/174/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/20/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/31/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/42/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/53/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/64/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/75/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/86/0.json -------------------------------------------------------------------------------- /results/AutoInt/year/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/AutoInt/year/97/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/108/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/119/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/130/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/141/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/152/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/163/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/174/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/20/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/31/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/42/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/53/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/64/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/75/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/86/0.json -------------------------------------------------------------------------------- /results/DANets-28/eye/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/eye/97/0.json -------------------------------------------------------------------------------- /results/DANets-28/otto/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/otto/20/0.json -------------------------------------------------------------------------------- /results/DANets-28/otto/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/otto/31/0.json -------------------------------------------------------------------------------- /results/DANets-28/otto/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/otto/42/0.json -------------------------------------------------------------------------------- /results/DANets-28/otto/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/otto/53/0.json -------------------------------------------------------------------------------- /results/DANets-28/otto/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/otto/64/0.json -------------------------------------------------------------------------------- /results/DANets-28/otto/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/otto/75/0.json -------------------------------------------------------------------------------- /results/DANets-28/otto/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/otto/86/0.json -------------------------------------------------------------------------------- /results/DANets-28/otto/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/otto/97/0.json -------------------------------------------------------------------------------- /results/DANets-28/year/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/year/20/0.json -------------------------------------------------------------------------------- /results/DANets-28/year/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/year/31/0.json -------------------------------------------------------------------------------- /results/DANets-28/year/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/year/42/0.json -------------------------------------------------------------------------------- /results/DANets-28/year/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/year/53/0.json -------------------------------------------------------------------------------- /results/DANets-28/year/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/year/64/0.json -------------------------------------------------------------------------------- /results/DANets-28/year/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/year/75/0.json -------------------------------------------------------------------------------- /results/DANets-28/year/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/year/86/0.json -------------------------------------------------------------------------------- /results/DANets-28/year/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DANets-28/year/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/adult/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/adult/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/churn/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/churn/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/eye/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/eye/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/gesture/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/gesture/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/helena/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/helena/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/house/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/house/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/jannis/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/jannis/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/otto/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/otto/97/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/108/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/119/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/130/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/141/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/152/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/163/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/174/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/20/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/31/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/42/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/53/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/64/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/75/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/86/0.json -------------------------------------------------------------------------------- /results/DCNv2/year/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/DCNv2/year/97/0.json -------------------------------------------------------------------------------- /results/MLP/adult/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/108/0.json -------------------------------------------------------------------------------- /results/MLP/adult/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/119/0.json -------------------------------------------------------------------------------- /results/MLP/adult/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/130/0.json -------------------------------------------------------------------------------- /results/MLP/adult/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/141/0.json -------------------------------------------------------------------------------- /results/MLP/adult/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/152/0.json -------------------------------------------------------------------------------- /results/MLP/adult/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/163/0.json -------------------------------------------------------------------------------- /results/MLP/adult/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/174/0.json -------------------------------------------------------------------------------- /results/MLP/adult/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/20/0.json -------------------------------------------------------------------------------- /results/MLP/adult/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/31/0.json -------------------------------------------------------------------------------- /results/MLP/adult/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/42/0.json -------------------------------------------------------------------------------- /results/MLP/adult/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/53/0.json -------------------------------------------------------------------------------- /results/MLP/adult/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/64/0.json -------------------------------------------------------------------------------- /results/MLP/adult/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/75/0.json -------------------------------------------------------------------------------- /results/MLP/adult/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/86/0.json -------------------------------------------------------------------------------- /results/MLP/adult/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/adult/97/0.json -------------------------------------------------------------------------------- /results/MLP/california/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/california/20/0.json -------------------------------------------------------------------------------- /results/MLP/california/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/california/31/0.json -------------------------------------------------------------------------------- /results/MLP/california/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/california/42/0.json -------------------------------------------------------------------------------- /results/MLP/california/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/california/53/0.json -------------------------------------------------------------------------------- /results/MLP/california/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/california/64/0.json -------------------------------------------------------------------------------- /results/MLP/california/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/california/75/0.json -------------------------------------------------------------------------------- /results/MLP/california/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/california/86/0.json -------------------------------------------------------------------------------- /results/MLP/california/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/california/97/0.json -------------------------------------------------------------------------------- /results/MLP/churn/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/108/0.json -------------------------------------------------------------------------------- /results/MLP/churn/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/119/0.json -------------------------------------------------------------------------------- /results/MLP/churn/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/130/0.json -------------------------------------------------------------------------------- /results/MLP/churn/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/141/0.json -------------------------------------------------------------------------------- /results/MLP/churn/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/152/0.json -------------------------------------------------------------------------------- /results/MLP/churn/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/163/0.json -------------------------------------------------------------------------------- /results/MLP/churn/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/174/0.json -------------------------------------------------------------------------------- /results/MLP/churn/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/20/0.json -------------------------------------------------------------------------------- /results/MLP/churn/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/31/0.json -------------------------------------------------------------------------------- /results/MLP/churn/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/42/0.json -------------------------------------------------------------------------------- /results/MLP/churn/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/53/0.json -------------------------------------------------------------------------------- /results/MLP/churn/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/64/0.json -------------------------------------------------------------------------------- /results/MLP/churn/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/75/0.json -------------------------------------------------------------------------------- /results/MLP/churn/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/86/0.json -------------------------------------------------------------------------------- /results/MLP/churn/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/churn/97/0.json -------------------------------------------------------------------------------- /results/MLP/eye/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/108/0.json -------------------------------------------------------------------------------- /results/MLP/eye/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/119/0.json -------------------------------------------------------------------------------- /results/MLP/eye/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/130/0.json -------------------------------------------------------------------------------- /results/MLP/eye/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/141/0.json -------------------------------------------------------------------------------- /results/MLP/eye/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/152/0.json -------------------------------------------------------------------------------- /results/MLP/eye/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/163/0.json -------------------------------------------------------------------------------- /results/MLP/eye/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/174/0.json -------------------------------------------------------------------------------- /results/MLP/eye/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/20/0.json -------------------------------------------------------------------------------- /results/MLP/eye/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/31/0.json -------------------------------------------------------------------------------- /results/MLP/eye/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/42/0.json -------------------------------------------------------------------------------- /results/MLP/eye/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/53/0.json -------------------------------------------------------------------------------- /results/MLP/eye/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/64/0.json -------------------------------------------------------------------------------- /results/MLP/eye/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/75/0.json -------------------------------------------------------------------------------- /results/MLP/eye/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/86/0.json -------------------------------------------------------------------------------- /results/MLP/eye/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/eye/97/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/108/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/119/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/130/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/141/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/152/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/163/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/174/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/20/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/31/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/42/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/53/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/64/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/75/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/86/0.json -------------------------------------------------------------------------------- /results/MLP/gesture/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/gesture/97/0.json -------------------------------------------------------------------------------- /results/MLP/helena/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/108/0.json -------------------------------------------------------------------------------- /results/MLP/helena/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/119/0.json -------------------------------------------------------------------------------- /results/MLP/helena/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/130/0.json -------------------------------------------------------------------------------- /results/MLP/helena/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/141/0.json -------------------------------------------------------------------------------- /results/MLP/helena/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/152/0.json -------------------------------------------------------------------------------- /results/MLP/helena/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/163/0.json -------------------------------------------------------------------------------- /results/MLP/helena/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/174/0.json -------------------------------------------------------------------------------- /results/MLP/helena/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/20/0.json -------------------------------------------------------------------------------- /results/MLP/helena/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/31/0.json -------------------------------------------------------------------------------- /results/MLP/helena/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/42/0.json -------------------------------------------------------------------------------- /results/MLP/helena/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/53/0.json -------------------------------------------------------------------------------- /results/MLP/helena/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/64/0.json -------------------------------------------------------------------------------- /results/MLP/helena/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/75/0.json -------------------------------------------------------------------------------- /results/MLP/helena/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/86/0.json -------------------------------------------------------------------------------- /results/MLP/helena/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/helena/97/0.json -------------------------------------------------------------------------------- /results/MLP/house/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/108/0.json -------------------------------------------------------------------------------- /results/MLP/house/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/119/0.json -------------------------------------------------------------------------------- /results/MLP/house/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/130/0.json -------------------------------------------------------------------------------- /results/MLP/house/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/141/0.json -------------------------------------------------------------------------------- /results/MLP/house/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/152/0.json -------------------------------------------------------------------------------- /results/MLP/house/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/163/0.json -------------------------------------------------------------------------------- /results/MLP/house/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/174/0.json -------------------------------------------------------------------------------- /results/MLP/house/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/20/0.json -------------------------------------------------------------------------------- /results/MLP/house/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/31/0.json -------------------------------------------------------------------------------- /results/MLP/house/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/42/0.json -------------------------------------------------------------------------------- /results/MLP/house/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/53/0.json -------------------------------------------------------------------------------- /results/MLP/house/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/64/0.json -------------------------------------------------------------------------------- /results/MLP/house/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/75/0.json -------------------------------------------------------------------------------- /results/MLP/house/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/86/0.json -------------------------------------------------------------------------------- /results/MLP/house/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/house/97/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/108/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/119/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/130/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/141/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/152/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/163/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/174/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/20/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/31/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/42/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/53/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/64/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/75/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/86/0.json -------------------------------------------------------------------------------- /results/MLP/jannis/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/jannis/97/0.json -------------------------------------------------------------------------------- /results/MLP/otto/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/108/0.json -------------------------------------------------------------------------------- /results/MLP/otto/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/119/0.json -------------------------------------------------------------------------------- /results/MLP/otto/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/130/0.json -------------------------------------------------------------------------------- /results/MLP/otto/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/141/0.json -------------------------------------------------------------------------------- /results/MLP/otto/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/152/0.json -------------------------------------------------------------------------------- /results/MLP/otto/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/163/0.json -------------------------------------------------------------------------------- /results/MLP/otto/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/174/0.json -------------------------------------------------------------------------------- /results/MLP/otto/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/20/0.json -------------------------------------------------------------------------------- /results/MLP/otto/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/31/0.json -------------------------------------------------------------------------------- /results/MLP/otto/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/42/0.json -------------------------------------------------------------------------------- /results/MLP/otto/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/53/0.json -------------------------------------------------------------------------------- /results/MLP/otto/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/64/0.json -------------------------------------------------------------------------------- /results/MLP/otto/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/75/0.json -------------------------------------------------------------------------------- /results/MLP/otto/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/86/0.json -------------------------------------------------------------------------------- /results/MLP/otto/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/otto/97/0.json -------------------------------------------------------------------------------- /results/MLP/year/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/108/0.json -------------------------------------------------------------------------------- /results/MLP/year/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/119/0.json -------------------------------------------------------------------------------- /results/MLP/year/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/130/0.json -------------------------------------------------------------------------------- /results/MLP/year/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/141/0.json -------------------------------------------------------------------------------- /results/MLP/year/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/152/0.json -------------------------------------------------------------------------------- /results/MLP/year/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/163/0.json -------------------------------------------------------------------------------- /results/MLP/year/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/174/0.json -------------------------------------------------------------------------------- /results/MLP/year/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/20/0.json -------------------------------------------------------------------------------- /results/MLP/year/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/31/0.json -------------------------------------------------------------------------------- /results/MLP/year/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/42/0.json -------------------------------------------------------------------------------- /results/MLP/year/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/53/0.json -------------------------------------------------------------------------------- /results/MLP/year/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/64/0.json -------------------------------------------------------------------------------- /results/MLP/year/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/75/0.json -------------------------------------------------------------------------------- /results/MLP/year/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/86/0.json -------------------------------------------------------------------------------- /results/MLP/year/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/MLP/year/97/0.json -------------------------------------------------------------------------------- /results/NODE/adult/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/108/0.json -------------------------------------------------------------------------------- /results/NODE/adult/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/119/0.json -------------------------------------------------------------------------------- /results/NODE/adult/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/130/0.json -------------------------------------------------------------------------------- /results/NODE/adult/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/141/0.json -------------------------------------------------------------------------------- /results/NODE/adult/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/152/0.json -------------------------------------------------------------------------------- /results/NODE/adult/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/163/0.json -------------------------------------------------------------------------------- /results/NODE/adult/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/174/0.json -------------------------------------------------------------------------------- /results/NODE/adult/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/20/0.json -------------------------------------------------------------------------------- /results/NODE/adult/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/31/0.json -------------------------------------------------------------------------------- /results/NODE/adult/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/42/0.json -------------------------------------------------------------------------------- /results/NODE/adult/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/53/0.json -------------------------------------------------------------------------------- /results/NODE/adult/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/64/0.json -------------------------------------------------------------------------------- /results/NODE/adult/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/75/0.json -------------------------------------------------------------------------------- /results/NODE/adult/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/86/0.json -------------------------------------------------------------------------------- /results/NODE/adult/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/adult/97/0.json -------------------------------------------------------------------------------- /results/NODE/churn/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/108/0.json -------------------------------------------------------------------------------- /results/NODE/churn/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/119/0.json -------------------------------------------------------------------------------- /results/NODE/churn/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/130/0.json -------------------------------------------------------------------------------- /results/NODE/churn/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/141/0.json -------------------------------------------------------------------------------- /results/NODE/churn/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/152/0.json -------------------------------------------------------------------------------- /results/NODE/churn/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/163/0.json -------------------------------------------------------------------------------- /results/NODE/churn/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/174/0.json -------------------------------------------------------------------------------- /results/NODE/churn/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/20/0.json -------------------------------------------------------------------------------- /results/NODE/churn/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/31/0.json -------------------------------------------------------------------------------- /results/NODE/churn/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/42/0.json -------------------------------------------------------------------------------- /results/NODE/churn/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/53/0.json -------------------------------------------------------------------------------- /results/NODE/churn/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/64/0.json -------------------------------------------------------------------------------- /results/NODE/churn/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/75/0.json -------------------------------------------------------------------------------- /results/NODE/churn/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/86/0.json -------------------------------------------------------------------------------- /results/NODE/churn/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/churn/97/0.json -------------------------------------------------------------------------------- /results/NODE/eye/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/108/0.json -------------------------------------------------------------------------------- /results/NODE/eye/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/119/0.json -------------------------------------------------------------------------------- /results/NODE/eye/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/130/0.json -------------------------------------------------------------------------------- /results/NODE/eye/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/141/0.json -------------------------------------------------------------------------------- /results/NODE/eye/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/152/0.json -------------------------------------------------------------------------------- /results/NODE/eye/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/163/0.json -------------------------------------------------------------------------------- /results/NODE/eye/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/174/0.json -------------------------------------------------------------------------------- /results/NODE/eye/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/20/0.json -------------------------------------------------------------------------------- /results/NODE/eye/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/31/0.json -------------------------------------------------------------------------------- /results/NODE/eye/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/42/0.json -------------------------------------------------------------------------------- /results/NODE/eye/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/53/0.json -------------------------------------------------------------------------------- /results/NODE/eye/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/64/0.json -------------------------------------------------------------------------------- /results/NODE/eye/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/75/0.json -------------------------------------------------------------------------------- /results/NODE/eye/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/86/0.json -------------------------------------------------------------------------------- /results/NODE/eye/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/eye/97/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/108/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/119/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/130/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/141/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/152/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/163/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/174/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/20/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/31/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/42/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/53/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/64/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/75/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/86/0.json -------------------------------------------------------------------------------- /results/NODE/gesture/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/gesture/97/0.json -------------------------------------------------------------------------------- /results/NODE/helena/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/108/0.json -------------------------------------------------------------------------------- /results/NODE/helena/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/119/0.json -------------------------------------------------------------------------------- /results/NODE/helena/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/130/0.json -------------------------------------------------------------------------------- /results/NODE/helena/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/141/0.json -------------------------------------------------------------------------------- /results/NODE/helena/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/152/0.json -------------------------------------------------------------------------------- /results/NODE/helena/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/163/0.json -------------------------------------------------------------------------------- /results/NODE/helena/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/174/0.json -------------------------------------------------------------------------------- /results/NODE/helena/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/20/0.json -------------------------------------------------------------------------------- /results/NODE/helena/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/31/0.json -------------------------------------------------------------------------------- /results/NODE/helena/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/42/0.json -------------------------------------------------------------------------------- /results/NODE/helena/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/53/0.json -------------------------------------------------------------------------------- /results/NODE/helena/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/64/0.json -------------------------------------------------------------------------------- /results/NODE/helena/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/75/0.json -------------------------------------------------------------------------------- /results/NODE/helena/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/86/0.json -------------------------------------------------------------------------------- /results/NODE/helena/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/helena/97/0.json -------------------------------------------------------------------------------- /results/NODE/house/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/108/0.json -------------------------------------------------------------------------------- /results/NODE/house/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/119/0.json -------------------------------------------------------------------------------- /results/NODE/house/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/130/0.json -------------------------------------------------------------------------------- /results/NODE/house/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/141/0.json -------------------------------------------------------------------------------- /results/NODE/house/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/152/0.json -------------------------------------------------------------------------------- /results/NODE/house/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/163/0.json -------------------------------------------------------------------------------- /results/NODE/house/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/174/0.json -------------------------------------------------------------------------------- /results/NODE/house/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/20/0.json -------------------------------------------------------------------------------- /results/NODE/house/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/31/0.json -------------------------------------------------------------------------------- /results/NODE/house/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/42/0.json -------------------------------------------------------------------------------- /results/NODE/house/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/53/0.json -------------------------------------------------------------------------------- /results/NODE/house/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/64/0.json -------------------------------------------------------------------------------- /results/NODE/house/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/75/0.json -------------------------------------------------------------------------------- /results/NODE/house/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/86/0.json -------------------------------------------------------------------------------- /results/NODE/house/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/house/97/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/108/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/119/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/130/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/141/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/152/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/163/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/174/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/20/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/31/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/42/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/53/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/64/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/75/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/86/0.json -------------------------------------------------------------------------------- /results/NODE/jannis/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/jannis/97/0.json -------------------------------------------------------------------------------- /results/NODE/otto/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/108/0.json -------------------------------------------------------------------------------- /results/NODE/otto/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/119/0.json -------------------------------------------------------------------------------- /results/NODE/otto/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/130/0.json -------------------------------------------------------------------------------- /results/NODE/otto/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/141/0.json -------------------------------------------------------------------------------- /results/NODE/otto/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/152/0.json -------------------------------------------------------------------------------- /results/NODE/otto/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/163/0.json -------------------------------------------------------------------------------- /results/NODE/otto/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/174/0.json -------------------------------------------------------------------------------- /results/NODE/otto/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/20/0.json -------------------------------------------------------------------------------- /results/NODE/otto/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/31/0.json -------------------------------------------------------------------------------- /results/NODE/otto/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/42/0.json -------------------------------------------------------------------------------- /results/NODE/otto/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/53/0.json -------------------------------------------------------------------------------- /results/NODE/otto/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/64/0.json -------------------------------------------------------------------------------- /results/NODE/otto/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/75/0.json -------------------------------------------------------------------------------- /results/NODE/otto/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/86/0.json -------------------------------------------------------------------------------- /results/NODE/otto/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/otto/97/0.json -------------------------------------------------------------------------------- /results/NODE/year/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/108/0.json -------------------------------------------------------------------------------- /results/NODE/year/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/119/0.json -------------------------------------------------------------------------------- /results/NODE/year/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/130/0.json -------------------------------------------------------------------------------- /results/NODE/year/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/141/0.json -------------------------------------------------------------------------------- /results/NODE/year/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/152/0.json -------------------------------------------------------------------------------- /results/NODE/year/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/163/0.json -------------------------------------------------------------------------------- /results/NODE/year/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/174/0.json -------------------------------------------------------------------------------- /results/NODE/year/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/20/0.json -------------------------------------------------------------------------------- /results/NODE/year/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/31/0.json -------------------------------------------------------------------------------- /results/NODE/year/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/42/0.json -------------------------------------------------------------------------------- /results/NODE/year/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/53/0.json -------------------------------------------------------------------------------- /results/NODE/year/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/64/0.json -------------------------------------------------------------------------------- /results/NODE/year/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/75/0.json -------------------------------------------------------------------------------- /results/NODE/year/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/86/0.json -------------------------------------------------------------------------------- /results/NODE/year/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/NODE/year/97/0.json -------------------------------------------------------------------------------- /results/SNN/adult/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/108/0.json -------------------------------------------------------------------------------- /results/SNN/adult/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/119/0.json -------------------------------------------------------------------------------- /results/SNN/adult/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/130/0.json -------------------------------------------------------------------------------- /results/SNN/adult/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/141/0.json -------------------------------------------------------------------------------- /results/SNN/adult/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/152/0.json -------------------------------------------------------------------------------- /results/SNN/adult/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/163/0.json -------------------------------------------------------------------------------- /results/SNN/adult/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/174/0.json -------------------------------------------------------------------------------- /results/SNN/adult/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/20/0.json -------------------------------------------------------------------------------- /results/SNN/adult/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/31/0.json -------------------------------------------------------------------------------- /results/SNN/adult/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/42/0.json -------------------------------------------------------------------------------- /results/SNN/adult/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/53/0.json -------------------------------------------------------------------------------- /results/SNN/adult/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/64/0.json -------------------------------------------------------------------------------- /results/SNN/adult/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/75/0.json -------------------------------------------------------------------------------- /results/SNN/adult/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/86/0.json -------------------------------------------------------------------------------- /results/SNN/adult/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/adult/97/0.json -------------------------------------------------------------------------------- /results/SNN/churn/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/108/0.json -------------------------------------------------------------------------------- /results/SNN/churn/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/119/0.json -------------------------------------------------------------------------------- /results/SNN/churn/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/130/0.json -------------------------------------------------------------------------------- /results/SNN/churn/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/141/0.json -------------------------------------------------------------------------------- /results/SNN/churn/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/152/0.json -------------------------------------------------------------------------------- /results/SNN/churn/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/163/0.json -------------------------------------------------------------------------------- /results/SNN/churn/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/174/0.json -------------------------------------------------------------------------------- /results/SNN/churn/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/20/0.json -------------------------------------------------------------------------------- /results/SNN/churn/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/31/0.json -------------------------------------------------------------------------------- /results/SNN/churn/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/42/0.json -------------------------------------------------------------------------------- /results/SNN/churn/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/53/0.json -------------------------------------------------------------------------------- /results/SNN/churn/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/64/0.json -------------------------------------------------------------------------------- /results/SNN/churn/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/75/0.json -------------------------------------------------------------------------------- /results/SNN/churn/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/86/0.json -------------------------------------------------------------------------------- /results/SNN/churn/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/churn/97/0.json -------------------------------------------------------------------------------- /results/SNN/eye/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/108/0.json -------------------------------------------------------------------------------- /results/SNN/eye/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/119/0.json -------------------------------------------------------------------------------- /results/SNN/eye/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/130/0.json -------------------------------------------------------------------------------- /results/SNN/eye/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/141/0.json -------------------------------------------------------------------------------- /results/SNN/eye/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/152/0.json -------------------------------------------------------------------------------- /results/SNN/eye/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/163/0.json -------------------------------------------------------------------------------- /results/SNN/eye/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/174/0.json -------------------------------------------------------------------------------- /results/SNN/eye/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/20/0.json -------------------------------------------------------------------------------- /results/SNN/eye/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/31/0.json -------------------------------------------------------------------------------- /results/SNN/eye/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/42/0.json -------------------------------------------------------------------------------- /results/SNN/eye/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/53/0.json -------------------------------------------------------------------------------- /results/SNN/eye/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/64/0.json -------------------------------------------------------------------------------- /results/SNN/eye/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/75/0.json -------------------------------------------------------------------------------- /results/SNN/eye/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/86/0.json -------------------------------------------------------------------------------- /results/SNN/eye/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/eye/97/0.json -------------------------------------------------------------------------------- /results/SNN/gesture/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/gesture/20/0.json -------------------------------------------------------------------------------- /results/SNN/gesture/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/gesture/31/0.json -------------------------------------------------------------------------------- /results/SNN/gesture/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/gesture/42/0.json -------------------------------------------------------------------------------- /results/SNN/gesture/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/gesture/53/0.json -------------------------------------------------------------------------------- /results/SNN/gesture/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/gesture/64/0.json -------------------------------------------------------------------------------- /results/SNN/gesture/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/gesture/75/0.json -------------------------------------------------------------------------------- /results/SNN/gesture/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/gesture/86/0.json -------------------------------------------------------------------------------- /results/SNN/gesture/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/gesture/97/0.json -------------------------------------------------------------------------------- /results/SNN/helena/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/108/0.json -------------------------------------------------------------------------------- /results/SNN/helena/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/119/0.json -------------------------------------------------------------------------------- /results/SNN/helena/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/130/0.json -------------------------------------------------------------------------------- /results/SNN/helena/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/141/0.json -------------------------------------------------------------------------------- /results/SNN/helena/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/152/0.json -------------------------------------------------------------------------------- /results/SNN/helena/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/163/0.json -------------------------------------------------------------------------------- /results/SNN/helena/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/174/0.json -------------------------------------------------------------------------------- /results/SNN/helena/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/20/0.json -------------------------------------------------------------------------------- /results/SNN/helena/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/31/0.json -------------------------------------------------------------------------------- /results/SNN/helena/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/42/0.json -------------------------------------------------------------------------------- /results/SNN/helena/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/53/0.json -------------------------------------------------------------------------------- /results/SNN/helena/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/64/0.json -------------------------------------------------------------------------------- /results/SNN/helena/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/75/0.json -------------------------------------------------------------------------------- /results/SNN/helena/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/86/0.json -------------------------------------------------------------------------------- /results/SNN/helena/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/helena/97/0.json -------------------------------------------------------------------------------- /results/SNN/house/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/108/0.json -------------------------------------------------------------------------------- /results/SNN/house/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/119/0.json -------------------------------------------------------------------------------- /results/SNN/house/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/130/0.json -------------------------------------------------------------------------------- /results/SNN/house/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/141/0.json -------------------------------------------------------------------------------- /results/SNN/house/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/152/0.json -------------------------------------------------------------------------------- /results/SNN/house/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/163/0.json -------------------------------------------------------------------------------- /results/SNN/house/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/174/0.json -------------------------------------------------------------------------------- /results/SNN/house/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/20/0.json -------------------------------------------------------------------------------- /results/SNN/house/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/31/0.json -------------------------------------------------------------------------------- /results/SNN/house/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/42/0.json -------------------------------------------------------------------------------- /results/SNN/house/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/53/0.json -------------------------------------------------------------------------------- /results/SNN/house/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/64/0.json -------------------------------------------------------------------------------- /results/SNN/house/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/75/0.json -------------------------------------------------------------------------------- /results/SNN/house/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/86/0.json -------------------------------------------------------------------------------- /results/SNN/house/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/house/97/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/108/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/119/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/130/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/141/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/152/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/163/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/174/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/20/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/31/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/42/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/53/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/64/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/75/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/86/0.json -------------------------------------------------------------------------------- /results/SNN/jannis/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/jannis/97/0.json -------------------------------------------------------------------------------- /results/SNN/otto/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/108/0.json -------------------------------------------------------------------------------- /results/SNN/otto/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/119/0.json -------------------------------------------------------------------------------- /results/SNN/otto/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/130/0.json -------------------------------------------------------------------------------- /results/SNN/otto/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/141/0.json -------------------------------------------------------------------------------- /results/SNN/otto/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/152/0.json -------------------------------------------------------------------------------- /results/SNN/otto/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/163/0.json -------------------------------------------------------------------------------- /results/SNN/otto/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/174/0.json -------------------------------------------------------------------------------- /results/SNN/otto/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/20/0.json -------------------------------------------------------------------------------- /results/SNN/otto/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/31/0.json -------------------------------------------------------------------------------- /results/SNN/otto/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/42/0.json -------------------------------------------------------------------------------- /results/SNN/otto/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/53/0.json -------------------------------------------------------------------------------- /results/SNN/otto/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/64/0.json -------------------------------------------------------------------------------- /results/SNN/otto/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/75/0.json -------------------------------------------------------------------------------- /results/SNN/otto/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/86/0.json -------------------------------------------------------------------------------- /results/SNN/otto/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/otto/97/0.json -------------------------------------------------------------------------------- /results/SNN/year/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/108/0.json -------------------------------------------------------------------------------- /results/SNN/year/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/119/0.json -------------------------------------------------------------------------------- /results/SNN/year/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/130/0.json -------------------------------------------------------------------------------- /results/SNN/year/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/141/0.json -------------------------------------------------------------------------------- /results/SNN/year/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/152/0.json -------------------------------------------------------------------------------- /results/SNN/year/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/163/0.json -------------------------------------------------------------------------------- /results/SNN/year/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/174/0.json -------------------------------------------------------------------------------- /results/SNN/year/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/20/0.json -------------------------------------------------------------------------------- /results/SNN/year/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/31/0.json -------------------------------------------------------------------------------- /results/SNN/year/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/42/0.json -------------------------------------------------------------------------------- /results/SNN/year/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/53/0.json -------------------------------------------------------------------------------- /results/SNN/year/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/64/0.json -------------------------------------------------------------------------------- /results/SNN/year/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/75/0.json -------------------------------------------------------------------------------- /results/SNN/year/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/86/0.json -------------------------------------------------------------------------------- /results/SNN/year/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/SNN/year/97/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/108/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/108/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/119/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/119/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/130/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/130/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/141/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/141/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/152/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/152/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/163/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/163/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/174/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/174/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/20/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/31/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/42/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/53/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/64/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/75/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/86/0.json -------------------------------------------------------------------------------- /results/TabNet/eye/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/eye/97/0.json -------------------------------------------------------------------------------- /results/TabNet/otto/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/otto/20/0.json -------------------------------------------------------------------------------- /results/TabNet/otto/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/otto/31/0.json -------------------------------------------------------------------------------- /results/TabNet/otto/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/otto/42/0.json -------------------------------------------------------------------------------- /results/TabNet/otto/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/otto/53/0.json -------------------------------------------------------------------------------- /results/TabNet/otto/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/otto/64/0.json -------------------------------------------------------------------------------- /results/TabNet/otto/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/otto/75/0.json -------------------------------------------------------------------------------- /results/TabNet/otto/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/otto/86/0.json -------------------------------------------------------------------------------- /results/TabNet/otto/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/otto/97/0.json -------------------------------------------------------------------------------- /results/TabNet/year/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/year/20/0.json -------------------------------------------------------------------------------- /results/TabNet/year/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/year/31/0.json -------------------------------------------------------------------------------- /results/TabNet/year/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/year/42/0.json -------------------------------------------------------------------------------- /results/TabNet/year/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/year/53/0.json -------------------------------------------------------------------------------- /results/TabNet/year/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/year/64/0.json -------------------------------------------------------------------------------- /results/TabNet/year/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/year/75/0.json -------------------------------------------------------------------------------- /results/TabNet/year/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/year/86/0.json -------------------------------------------------------------------------------- /results/TabNet/year/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/TabNet/year/97/0.json -------------------------------------------------------------------------------- /results/XGBoost/eye/20/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/XGBoost/eye/20/0.json -------------------------------------------------------------------------------- /results/XGBoost/eye/31/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/XGBoost/eye/31/0.json -------------------------------------------------------------------------------- /results/XGBoost/eye/42/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/XGBoost/eye/42/0.json -------------------------------------------------------------------------------- /results/XGBoost/eye/53/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/XGBoost/eye/53/0.json -------------------------------------------------------------------------------- /results/XGBoost/eye/64/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/XGBoost/eye/64/0.json -------------------------------------------------------------------------------- /results/XGBoost/eye/75/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/XGBoost/eye/75/0.json -------------------------------------------------------------------------------- /results/XGBoost/eye/86/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/XGBoost/eye/86/0.json -------------------------------------------------------------------------------- /results/XGBoost/eye/97/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/results/XGBoost/eye/97/0.json -------------------------------------------------------------------------------- /run_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/run_baselines.py -------------------------------------------------------------------------------- /run_danets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/run_danets.py -------------------------------------------------------------------------------- /run_t2g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/run_t2g.py -------------------------------------------------------------------------------- /run_tf_tabnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/run_tf_tabnet.py -------------------------------------------------------------------------------- /run_xgboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/run_xgboost.py -------------------------------------------------------------------------------- /tune_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/tune_baselines.py -------------------------------------------------------------------------------- /tune_t2g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/tune_t2g.py -------------------------------------------------------------------------------- /tune_xgboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyansir/t2g-former/HEAD/tune_xgboost.py --------------------------------------------------------------------------------