├── .gitignore ├── LICENSE ├── README.md ├── demo-log └── vary-test-penalty │ └── p-16_b-4_pad-random │ └── tp-0.25 │ └── p_rm_ob_rcl-0.00_enc-0.30 │ └── lp-4 │ └── enc-cum_size-16 │ └── nmem-2 │ └── rp-LCA_metric-cosine_cmpt-0.8 │ └── h-194_hdec-128 │ └── lr-0.0007-eta-0.1 │ └── sup_epoch-600 │ ├── p4-0.pkl │ ├── p4-2-enc-8.pkl │ ├── p4-2.pkl │ ├── p4-4.pkl │ └── subj-0 │ ├── ckpts │ ├── ckpt_ep-0.pt │ ├── ckpt_ep-1000.pt │ ├── ckpt_ep-200.pt │ ├── ckpt_ep-400.pt │ ├── ckpt_ep-600.pt │ └── ckpt_ep-800.pt │ └── data │ ├── env.json │ └── params_net.json ├── doc ├── RightsLink Printable License-baldassano et al 2017.pdf └── RightsLink Printable License-chen et al 2016.pdf ├── environment.yml ├── figs └── .gitkeep ├── log └── .gitkeep ├── requirement.txt └── src ├── analysis ├── __init__.py ├── behav.py ├── general.py ├── neural.py ├── preprocessing.py ├── task.py └── utils.py ├── decode.py ├── demo.py ├── eval-group.py ├── examples ├── SLIMM.py ├── event-empirical-similarity.py ├── event-similarity-cap.py ├── event-similarity.py ├── figs │ ├── demo_mb.png │ ├── isc-c.png │ ├── isc-cp.png │ ├── native.png │ ├── shared.png │ └── stimulus-rep.png ├── func-align-demo.ipynb ├── higih-low-schema-reg.py ├── memory_benefit.py ├── schema-regularity.py ├── stimuli-representation.py ├── true-uncertainty.py └── zuo-2019-control-patient-isc-logic.py ├── exp_tz.py ├── models ├── A2C.py ├── EM.py ├── LCA.py ├── LCALSTM.py ├── LCALSTM_after.py ├── LCA_pytorch.py ├── __init__.py ├── _rl_helpers.py ├── initializer.py └── metrics.py ├── submit-familiarity.sh ├── submit-similarity-high.sh ├── submit-similarity-low.sh ├── submit-vary-schema-level-postgate.sh ├── submit-vary-schema-level.sh ├── submit-vary-test-penalty-fixobs.sh ├── submit-vary-test-penalty-postgate.sh ├── submit-vary-test-penalty.sh ├── submit-vary-train-penalty.sh ├── task ├── Schema.py ├── SequenceLearning.py ├── StimSampler.py ├── __init__.py └── utils.py ├── train-model-after.sh ├── train-model.sh ├── train-sl-after.py ├── train-sl.py ├── utils ├── __init__.py ├── constants.py ├── io.py ├── params.py └── utils.py ├── vis-compare-encpol.py ├── vis-cosine-sim.py ├── vis-data-after.py ├── vis-data.py ├── vis-inpt-by-schematicity.py ├── vis-isc.py ├── vis-policy-adj-similarity.py ├── vis-policy-adjustment.py ├── vis-policy-diff.py └── vis ├── __init__.py ├── _utils.py └── _vis.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/README.md -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/p4-0.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/p4-0.pkl -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/p4-2-enc-8.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/p4-2-enc-8.pkl -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/p4-2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/p4-2.pkl -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/p4-4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/p4-4.pkl -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-0.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-0.pt -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-1000.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-1000.pt -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-200.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-200.pt -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-400.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-400.pt -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-600.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-600.pt -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-800.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/ckpts/ckpt_ep-800.pt -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/data/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/data/env.json -------------------------------------------------------------------------------- /demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/data/params_net.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/demo-log/vary-test-penalty/p-16_b-4_pad-random/tp-0.25/p_rm_ob_rcl-0.00_enc-0.30/lp-4/enc-cum_size-16/nmem-2/rp-LCA_metric-cosine_cmpt-0.8/h-194_hdec-128/lr-0.0007-eta-0.1/sup_epoch-600/subj-0/data/params_net.json -------------------------------------------------------------------------------- /doc/RightsLink Printable License-baldassano et al 2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/doc/RightsLink Printable License-baldassano et al 2017.pdf -------------------------------------------------------------------------------- /doc/RightsLink Printable License-chen et al 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/doc/RightsLink Printable License-chen et al 2016.pdf -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/environment.yml -------------------------------------------------------------------------------- /figs/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/requirement.txt -------------------------------------------------------------------------------- /src/analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/analysis/__init__.py -------------------------------------------------------------------------------- /src/analysis/behav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/analysis/behav.py -------------------------------------------------------------------------------- /src/analysis/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/analysis/general.py -------------------------------------------------------------------------------- /src/analysis/neural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/analysis/neural.py -------------------------------------------------------------------------------- /src/analysis/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/analysis/preprocessing.py -------------------------------------------------------------------------------- /src/analysis/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/analysis/task.py -------------------------------------------------------------------------------- /src/analysis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/analysis/utils.py -------------------------------------------------------------------------------- /src/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/decode.py -------------------------------------------------------------------------------- /src/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/demo.py -------------------------------------------------------------------------------- /src/eval-group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/eval-group.py -------------------------------------------------------------------------------- /src/examples/SLIMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/SLIMM.py -------------------------------------------------------------------------------- /src/examples/event-empirical-similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/event-empirical-similarity.py -------------------------------------------------------------------------------- /src/examples/event-similarity-cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/event-similarity-cap.py -------------------------------------------------------------------------------- /src/examples/event-similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/event-similarity.py -------------------------------------------------------------------------------- /src/examples/figs/demo_mb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/figs/demo_mb.png -------------------------------------------------------------------------------- /src/examples/figs/isc-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/figs/isc-c.png -------------------------------------------------------------------------------- /src/examples/figs/isc-cp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/figs/isc-cp.png -------------------------------------------------------------------------------- /src/examples/figs/native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/figs/native.png -------------------------------------------------------------------------------- /src/examples/figs/shared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/figs/shared.png -------------------------------------------------------------------------------- /src/examples/figs/stimulus-rep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/figs/stimulus-rep.png -------------------------------------------------------------------------------- /src/examples/func-align-demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/func-align-demo.ipynb -------------------------------------------------------------------------------- /src/examples/higih-low-schema-reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/higih-low-schema-reg.py -------------------------------------------------------------------------------- /src/examples/memory_benefit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/memory_benefit.py -------------------------------------------------------------------------------- /src/examples/schema-regularity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/schema-regularity.py -------------------------------------------------------------------------------- /src/examples/stimuli-representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/stimuli-representation.py -------------------------------------------------------------------------------- /src/examples/true-uncertainty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/true-uncertainty.py -------------------------------------------------------------------------------- /src/examples/zuo-2019-control-patient-isc-logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/examples/zuo-2019-control-patient-isc-logic.py -------------------------------------------------------------------------------- /src/exp_tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/exp_tz.py -------------------------------------------------------------------------------- /src/models/A2C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/A2C.py -------------------------------------------------------------------------------- /src/models/EM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/EM.py -------------------------------------------------------------------------------- /src/models/LCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/LCA.py -------------------------------------------------------------------------------- /src/models/LCALSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/LCALSTM.py -------------------------------------------------------------------------------- /src/models/LCALSTM_after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/LCALSTM_after.py -------------------------------------------------------------------------------- /src/models/LCA_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/LCA_pytorch.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/__init__.py -------------------------------------------------------------------------------- /src/models/_rl_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/_rl_helpers.py -------------------------------------------------------------------------------- /src/models/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/initializer.py -------------------------------------------------------------------------------- /src/models/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/models/metrics.py -------------------------------------------------------------------------------- /src/submit-familiarity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-familiarity.sh -------------------------------------------------------------------------------- /src/submit-similarity-high.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-similarity-high.sh -------------------------------------------------------------------------------- /src/submit-similarity-low.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-similarity-low.sh -------------------------------------------------------------------------------- /src/submit-vary-schema-level-postgate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-vary-schema-level-postgate.sh -------------------------------------------------------------------------------- /src/submit-vary-schema-level.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-vary-schema-level.sh -------------------------------------------------------------------------------- /src/submit-vary-test-penalty-fixobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-vary-test-penalty-fixobs.sh -------------------------------------------------------------------------------- /src/submit-vary-test-penalty-postgate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-vary-test-penalty-postgate.sh -------------------------------------------------------------------------------- /src/submit-vary-test-penalty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-vary-test-penalty.sh -------------------------------------------------------------------------------- /src/submit-vary-train-penalty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/submit-vary-train-penalty.sh -------------------------------------------------------------------------------- /src/task/Schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/task/Schema.py -------------------------------------------------------------------------------- /src/task/SequenceLearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/task/SequenceLearning.py -------------------------------------------------------------------------------- /src/task/StimSampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/task/StimSampler.py -------------------------------------------------------------------------------- /src/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/task/__init__.py -------------------------------------------------------------------------------- /src/task/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/task/utils.py -------------------------------------------------------------------------------- /src/train-model-after.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/train-model-after.sh -------------------------------------------------------------------------------- /src/train-model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/train-model.sh -------------------------------------------------------------------------------- /src/train-sl-after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/train-sl-after.py -------------------------------------------------------------------------------- /src/train-sl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/train-sl.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/utils/constants.py -------------------------------------------------------------------------------- /src/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/utils/io.py -------------------------------------------------------------------------------- /src/utils/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/utils/params.py -------------------------------------------------------------------------------- /src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/utils/utils.py -------------------------------------------------------------------------------- /src/vis-compare-encpol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-compare-encpol.py -------------------------------------------------------------------------------- /src/vis-cosine-sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-cosine-sim.py -------------------------------------------------------------------------------- /src/vis-data-after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-data-after.py -------------------------------------------------------------------------------- /src/vis-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-data.py -------------------------------------------------------------------------------- /src/vis-inpt-by-schematicity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-inpt-by-schematicity.py -------------------------------------------------------------------------------- /src/vis-isc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-isc.py -------------------------------------------------------------------------------- /src/vis-policy-adj-similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-policy-adj-similarity.py -------------------------------------------------------------------------------- /src/vis-policy-adjustment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-policy-adjustment.py -------------------------------------------------------------------------------- /src/vis-policy-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis-policy-diff.py -------------------------------------------------------------------------------- /src/vis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis/__init__.py -------------------------------------------------------------------------------- /src/vis/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis/_utils.py -------------------------------------------------------------------------------- /src/vis/_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qihongl/learn-hippo/HEAD/src/vis/_vis.py --------------------------------------------------------------------------------