├── .depends ├── bash ├── bats ├── java │ └── commands ├── node_tools │ ├── commands │ ├── depends │ ├── install.sh │ ├── package.json │ └── paths ├── nodejs └── unzip │ └── commands ├── .gitignore ├── .gitmodules ├── .vimrc ├── Makefile ├── README.md ├── dashboard ├── .gitignore ├── .module.build ├── .module.install ├── README.md ├── backend ├── compile-xdocs ├── compress-json ├── dashboard-aggregate-values.coffee ├── dashboard-ls-reports ├── dashboard-ls-snapshots ├── dashboard-report-content ├── dashboard-report-template ├── dashboard-snapshot-config ├── dashboard-trends-config ├── escape-args-for-shell ├── eval-coffee-on-deepdive-app-conf ├── find-deepdive-app ├── find-deepdive-db-uri ├── frontend ├── html-table-for ├── json-for ├── json-string ├── list-breadcrumb-paths ├── merge-order-specs ├── mindbender-cancel-snapshot ├── mindbender-dashboard ├── mindbender-produce-reports ├── mindbender-report-task ├── mindbender-snapshot ├── report-log ├── report-sql-template.sh ├── report-templates │ ├── corpus │ │ └── stats │ │ │ └── report.desc │ ├── learning │ │ ├── histogram-weights-of-feature │ │ │ └── report.desc │ │ └── sample-features │ │ │ ├── top-negative-features │ │ │ └── report.desc │ │ │ └── top-positive-features │ │ │ └── report.desc │ └── variable │ │ ├── candidate │ │ ├── report.desc │ │ └── sample-frequent-candidates │ │ │ └── report.desc │ │ ├── feature │ │ ├── histogram-candidates-per-feature │ │ │ └── report.desc │ │ ├── histogram-features-per-candidate │ │ │ └── report.desc │ │ ├── report.desc │ │ └── sample-frequent-features │ │ │ └── report.desc │ │ ├── inference │ │ ├── report.desc │ │ └── sample-frequent-extractions │ │ │ └── report.desc │ │ └── supervision │ │ ├── plot-supervision-by-feature │ │ └── report.desc │ │ └── report.desc ├── report-values.coffee ├── report-warn ├── run-sql ├── snapshot-files ├── snapshot-template │ ├── corpus │ │ └── stats │ │ │ ├── README.md.in │ │ │ └── report.params │ ├── learning │ │ ├── histogram-weights-of-feature │ │ │ ├── data.chart │ │ │ ├── data.sql.in │ │ │ ├── report.params │ │ │ └── report.sh │ │ └── sample-features │ │ │ ├── report.params │ │ │ ├── top-negative-features │ │ │ ├── data.sql.in │ │ │ └── report.sh │ │ │ └── top-positive-features │ │ │ ├── data.sql.in │ │ │ └── report.sh │ ├── task │ │ └── sample-candidates-with-feature │ │ │ ├── data.sql.in │ │ │ ├── report.sh │ │ │ └── task.params │ └── variable │ │ ├── README.md.in │ │ ├── candidate │ │ ├── README.md.in │ │ └── sample-frequent-candidates │ │ │ ├── data.chart │ │ │ ├── data.sql.in │ │ │ ├── report.params │ │ │ └── report.sh │ │ ├── feature │ │ ├── README.md.in │ │ ├── histogram-candidates-per-feature │ │ │ ├── data.chart │ │ │ ├── data.sql.in │ │ │ └── report.sh │ │ ├── histogram-features-per-candidate │ │ │ ├── data.chart │ │ │ ├── data.sql.in │ │ │ └── report.sh │ │ ├── report.params │ │ └── sample-frequent-features │ │ │ ├── data.sql.in │ │ │ ├── report.params │ │ │ └── report.sh │ │ ├── inference │ │ ├── README.md.in │ │ ├── calibration-plot │ │ │ └── README.md.in │ │ └── sample-frequent-extractions │ │ │ ├── data.sql.in │ │ │ ├── report.params │ │ │ └── report.sh │ │ ├── report.params │ │ ├── reports.order │ │ └── supervision │ │ ├── README.md.in │ │ └── plot-supervision-by-feature │ │ └── README.md.in └── transpose-json ├── depends ├── .module.build ├── .module.install ├── bundle.conf ├── bundled │ ├── elasticsearch │ ├── jq │ ├── nodejs │ └── pv ├── check-runtime-depends-once ├── nodejs │ ├── .module.build │ ├── .module.install │ └── package.json └── runtime │ └── pyhocon │ └── commands ├── examples ├── .gitignore ├── dashboard │ ├── dd-genomics │ │ ├── application.conf │ │ ├── snapshot-basic.conf │ │ ├── snapshot-default.conf │ │ └── snapshot │ │ │ └── 20150516-2 │ │ │ ├── README.md │ │ │ ├── files │ │ │ └── application.conf │ │ │ ├── reports.html │ │ │ ├── reports.ids │ │ │ ├── reports.json │ │ │ ├── reports.log │ │ │ ├── reports.paths │ │ │ ├── reports │ │ │ ├── corpus │ │ │ │ └── stats │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.json │ │ │ │ │ ├── report.params │ │ │ │ │ └── report.params.json │ │ │ ├── learning │ │ │ │ ├── histogram-weights-of-feature │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.chart │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ │ └── sample-features │ │ │ │ │ ├── report.params │ │ │ │ │ ├── top-negative-features │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ │ │ └── top-positive-features │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ ├── variable-2 │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── candidate │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.json │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── sample-frequent-candidates │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.chart │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ ├── feature │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── histogram-candidates-per-feature │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.chart │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ ├── histogram-features-per-candidate │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.chart │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ ├── report.json │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── sample-frequent-features │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ ├── inference │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── calibration-plot │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── README.md.in │ │ │ │ │ │ ├── calibration.csv │ │ │ │ │ │ ├── calibration.json │ │ │ │ │ │ └── report.params.json │ │ │ │ │ ├── histogram-weights-of-feature │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.chart │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ ├── quality │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── README.md.in │ │ │ │ │ │ └── report.params.json │ │ │ │ │ ├── report.json │ │ │ │ │ ├── report.params.json │ │ │ │ │ ├── sample-frequent-extractions │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ └── sample-weighted-features │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── README.md.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ ├── top_negative_features.csv │ │ │ │ │ │ └── top_positive_features.csv │ │ │ │ ├── quality │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ └── report.params.json │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ ├── reports.order │ │ │ │ └── supervision │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.json │ │ │ │ │ └── report.params.json │ │ │ └── variable │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── candidate │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ └── sample-frequent-candidates │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.chart │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ │ ├── feature │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── histogram-candidates-per-feature │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.chart │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ │ ├── histogram-features-per-candidate │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.chart │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ │ ├── report.json │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ └── sample-frequent-features │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ │ ├── inference │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── calibration-plot │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── calibration.csv │ │ │ │ │ ├── calibration.json │ │ │ │ │ └── report.params.json │ │ │ │ ├── histogram-weights-of-feature │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.chart │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ │ ├── quality │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ └── report.params.json │ │ │ │ ├── report.json │ │ │ │ ├── report.params.json │ │ │ │ ├── sample-frequent-extractions │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.sql │ │ │ │ │ ├── data.sql.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── report.sh │ │ │ │ └── sample-weighted-features │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ ├── top_negative_features.csv │ │ │ │ │ └── top_positive_features.csv │ │ │ │ ├── quality │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ └── report.params.json │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ ├── reports.order │ │ │ │ └── supervision │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ │ └── snapshot-default.conf │ ├── spouse_example │ │ ├── application.conf │ │ ├── env.sh │ │ ├── run.sh │ │ ├── schema.sql │ │ ├── setup_database.sh │ │ ├── snapshot-default.conf │ │ ├── snapshot-files │ │ └── snapshot │ │ │ ├── 20150527-29 │ │ │ ├── README.md │ │ │ ├── files │ │ │ │ └── application.conf │ │ │ ├── reports.html │ │ │ ├── reports.ids │ │ │ ├── reports.json │ │ │ ├── reports.log │ │ │ ├── reports.paths │ │ │ ├── reports │ │ │ │ ├── corpus │ │ │ │ │ └── stats │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── README.md.in │ │ │ │ │ │ ├── report.json │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ └── report.params.json │ │ │ │ ├── learning │ │ │ │ │ ├── histogram-weights-of-feature │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.chart │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ └── sample-features │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── top-negative-features │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ │ └── top-positive-features │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ └── variable │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── candidate │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.json │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── sample-frequent-candidates │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.chart │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ ├── feature │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── histogram-candidates-per-feature │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.chart │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ ├── histogram-features-per-candidate │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.chart │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ ├── report.json │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── sample-frequent-features │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ ├── inference │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── calibration-plot │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── README.md.in │ │ │ │ │ │ ├── calibration.csv │ │ │ │ │ │ ├── calibration.json │ │ │ │ │ │ └── report.params.json │ │ │ │ │ ├── report.json │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── sample-frequent-extractions │ │ │ │ │ │ ├── .report.id │ │ │ │ │ │ ├── .report.params │ │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ │ ├── .report.params.required │ │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ ├── data.sql.in │ │ │ │ │ │ ├── report.params │ │ │ │ │ │ ├── report.params.json │ │ │ │ │ │ └── report.sh │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ ├── reports.order │ │ │ │ │ └── supervision │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── plot-supervision-by-feature │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.params.json │ │ │ │ │ ├── supervision_distribution.csv │ │ │ │ │ ├── supervision_distribution.highcharts-options │ │ │ │ │ └── supervision_distribution.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── report.params.json │ │ │ └── snapshot-default.conf │ │ │ └── LATEST │ ├── stanford-memex │ │ ├── application.conf │ │ ├── snapshot-default.conf │ │ └── snapshot │ │ │ ├── 20150410-2 │ │ │ ├── README.md │ │ │ ├── reports.conf │ │ │ ├── reports.html │ │ │ ├── reports.ids │ │ │ ├── reports.json │ │ │ ├── reports.log │ │ │ ├── reports.paths │ │ │ └── reports │ │ │ │ ├── corpus │ │ │ │ └── stats │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.json │ │ │ │ │ ├── report.params │ │ │ │ │ └── report.params.json │ │ │ │ └── variable │ │ │ │ ├── .report.params │ │ │ │ ├── README.md.in │ │ │ │ ├── candidate │ │ │ │ ├── .report.params │ │ │ │ ├── README.md.in │ │ │ │ └── report.params │ │ │ │ ├── feature │ │ │ │ ├── .report.params │ │ │ │ ├── README.md.in │ │ │ │ └── report.params │ │ │ │ ├── inference │ │ │ │ ├── .report.params │ │ │ │ ├── README.md.in │ │ │ │ └── report.params │ │ │ │ ├── quality │ │ │ │ ├── .report.params │ │ │ │ └── README.md.in │ │ │ │ ├── report.params │ │ │ │ ├── reports.order │ │ │ │ └── supervision │ │ │ │ ├── .report.params │ │ │ │ └── README.md.in │ │ │ └── 20150410-6 │ │ │ ├── README.md │ │ │ ├── reports.conf │ │ │ ├── reports.html │ │ │ ├── reports.ids │ │ │ ├── reports.json │ │ │ ├── reports.log │ │ │ ├── reports.paths │ │ │ └── reports │ │ │ ├── variable-2 │ │ │ ├── .report.id │ │ │ ├── .report.params │ │ │ ├── .report.params.optional │ │ │ ├── .report.params.required │ │ │ ├── .report.params.sh │ │ │ ├── README.md │ │ │ ├── README.md.in │ │ │ ├── candidate │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ └── sample-frequent-candidates │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── frequent_candidates.csv │ │ │ │ │ ├── report.params │ │ │ │ │ └── report.params.json │ │ │ ├── feature │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── histogram-candidates-per-feature │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── num_candidates_per_feature.chart │ │ │ │ │ ├── num_candidates_per_feature.csv │ │ │ │ │ ├── num_candidates_per_feature.json │ │ │ │ │ ├── num_candidates_per_feature.sql │ │ │ │ │ └── report.params.json │ │ │ │ ├── histogram-features-per-candidate │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── num_features_per_candidate.chart │ │ │ │ │ ├── num_features_per_candidate.csv │ │ │ │ │ ├── num_features_per_candidate.json │ │ │ │ │ ├── num_features_per_candidate.sql │ │ │ │ │ └── report.params.json │ │ │ │ ├── report.json │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ └── sample-frequent-features │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ ├── sample_frequent_features.csv │ │ │ │ │ ├── sample_frequent_features.json │ │ │ │ │ └── sample_frequent_features.sql │ │ │ ├── inference │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── histogram-weights-of-feature │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── histogram_weights_of_feature.chart │ │ │ │ │ ├── histogram_weights_of_feature.csv │ │ │ │ │ ├── histogram_weights_of_feature.sql │ │ │ │ │ ├── report.params │ │ │ │ │ └── report.params.json │ │ │ │ ├── report.json │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ ├── sample-frequent-extractions │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ └── top_extractions.csv │ │ │ │ └── sample-weighted-features │ │ │ │ │ ├── .report.id │ │ │ │ │ ├── .report.params │ │ │ │ │ ├── .report.params.optional │ │ │ │ │ ├── .report.params.required │ │ │ │ │ ├── .report.params.sh │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.in │ │ │ │ │ ├── report.params │ │ │ │ │ ├── report.params.json │ │ │ │ │ ├── top_negative_features.csv │ │ │ │ │ └── top_positive_features.csv │ │ │ ├── quality │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ └── report.params.json │ │ │ ├── report.params │ │ │ ├── report.params.json │ │ │ ├── reports.order │ │ │ └── supervision │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ │ └── variable │ │ │ ├── .report.id │ │ │ ├── .report.params │ │ │ ├── .report.params.optional │ │ │ ├── .report.params.required │ │ │ ├── .report.params.sh │ │ │ ├── README.md │ │ │ ├── README.md.in │ │ │ ├── candidate │ │ │ ├── .report.id │ │ │ ├── .report.params │ │ │ ├── .report.params.optional │ │ │ ├── .report.params.required │ │ │ ├── .report.params.sh │ │ │ ├── README.md │ │ │ ├── README.md.in │ │ │ ├── report.json │ │ │ ├── report.params │ │ │ ├── report.params.json │ │ │ └── sample-frequent-candidates │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── frequent_candidates.csv │ │ │ │ ├── report.params │ │ │ │ └── report.params.json │ │ │ ├── feature │ │ │ ├── .report.id │ │ │ ├── .report.params │ │ │ ├── .report.params.optional │ │ │ ├── .report.params.required │ │ │ ├── .report.params.sh │ │ │ ├── README.md │ │ │ ├── README.md.in │ │ │ ├── histogram-candidates-per-feature │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── num_candidates_per_feature.chart │ │ │ │ ├── num_candidates_per_feature.csv │ │ │ │ ├── num_candidates_per_feature.json │ │ │ │ ├── num_candidates_per_feature.sql │ │ │ │ └── report.params.json │ │ │ ├── histogram-features-per-candidate │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── num_features_per_candidate.chart │ │ │ │ ├── num_features_per_candidate.csv │ │ │ │ ├── num_features_per_candidate.json │ │ │ │ ├── num_features_per_candidate.sql │ │ │ │ └── report.params.json │ │ │ ├── report.json │ │ │ ├── report.params │ │ │ ├── report.params.json │ │ │ └── sample-frequent-features │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ ├── sample_frequent_features.csv │ │ │ │ ├── sample_frequent_features.json │ │ │ │ └── sample_frequent_features.sql │ │ │ ├── inference │ │ │ ├── .report.id │ │ │ ├── .report.params │ │ │ ├── .report.params.optional │ │ │ ├── .report.params.required │ │ │ ├── .report.params.sh │ │ │ ├── README.md │ │ │ ├── README.md.in │ │ │ ├── histogram-weights-of-feature │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── histogram_weights_of_feature.chart │ │ │ │ ├── histogram_weights_of_feature.csv │ │ │ │ ├── histogram_weights_of_feature.sql │ │ │ │ ├── report.params │ │ │ │ └── report.params.json │ │ │ ├── report.json │ │ │ ├── report.params │ │ │ ├── report.params.json │ │ │ ├── sample-frequent-extractions │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ └── top_extractions.csv │ │ │ └── sample-weighted-features │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.params │ │ │ │ ├── report.params.json │ │ │ │ ├── top_negative_features.csv │ │ │ │ └── top_positive_features.csv │ │ │ ├── quality │ │ │ ├── .report.id │ │ │ ├── .report.params │ │ │ ├── .report.params.optional │ │ │ ├── .report.params.required │ │ │ ├── .report.params.sh │ │ │ ├── README.md │ │ │ ├── README.md.in │ │ │ └── report.params.json │ │ │ ├── report.params │ │ │ ├── report.params.json │ │ │ ├── reports.order │ │ │ └── supervision │ │ │ ├── .report.id │ │ │ ├── .report.params │ │ │ ├── .report.params.optional │ │ │ ├── .report.params.required │ │ │ ├── .report.params.sh │ │ │ ├── README.md │ │ │ ├── README.md.in │ │ │ ├── report.json │ │ │ └── report.params.json │ └── trends-demo │ │ ├── application.conf │ │ ├── dashboard-trends.conf │ │ ├── env.sh │ │ ├── run.sh │ │ ├── schema.sql │ │ ├── setup_database.sh │ │ ├── snapshot-default.conf │ │ ├── snapshot-files │ │ ├── snapshot-template │ │ └── trends-demo │ │ │ └── README.md.in │ │ └── snapshot │ │ ├── .dburi │ │ ├── 20150714-1 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-10 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-11 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-12 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-13 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-14 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-15 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-16 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-17 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-18 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-19 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-2 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-20 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-21 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-22 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-23 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-24 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-25 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-26 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-27 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-28 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-29 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-3 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-30 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-31 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-32 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-33 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-34 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-35 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-4 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-5 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-6 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-7 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-8 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ ├── 20150714-9 │ │ ├── README.md │ │ ├── reports.ids │ │ ├── reports.json │ │ ├── reports.log │ │ ├── reports.names │ │ ├── reports.paths │ │ ├── reports │ │ │ └── trends-demo │ │ │ │ ├── .report.id │ │ │ │ ├── .report.params │ │ │ │ ├── .report.params.optional │ │ │ │ ├── .report.params.required │ │ │ │ ├── .report.params.sh │ │ │ │ ├── README.md │ │ │ │ ├── README.md.in │ │ │ │ ├── report.json │ │ │ │ └── report.params.json │ │ ├── snapshot.conf │ │ └── snapshot.last.conf │ │ └── PREVIOUS ├── labeling │ ├── genomics-precision-parameterized │ │ ├── input-a.tsv │ │ ├── input-b.tsv │ │ ├── mindtagger.conf │ │ └── template.html │ ├── genomics-precision │ │ ├── gene_mentions.tsv │ │ ├── mindtagger.conf │ │ └── template.html │ ├── genomics-recall-relation │ │ ├── input.tsv │ │ ├── mindtagger.conf │ │ └── template.html │ ├── genomics-recall │ │ ├── input.tsv │ │ ├── mindtagger.conf │ │ └── template.html │ ├── images-labeling │ │ ├── .gitignore │ │ ├── images-tutoring,flyer.json │ │ ├── images.json │ │ ├── mindtagger.conf │ │ ├── prep-images-from-public-feed.sh │ │ ├── prep-images.sh │ │ └── template.html │ └── start-mindtagger.sh └── spouse_example │ ├── .gitignore │ ├── README.md │ ├── app.ddlog │ ├── db.url │ ├── deepdive.conf │ ├── demo.sh │ ├── input │ └── init.sh │ ├── mindbender │ └── search-template │ │ ├── has_spouse_candidates.html │ │ ├── people_mentions.html │ │ └── sentences.html │ ├── snapshot-default.conf │ └── snapshot-files ├── gui ├── backend │ ├── .gitignore │ ├── .module.build │ ├── .module.install │ ├── dashboard │ │ └── dashboard-api.coffee │ ├── extensions.coffee │ ├── extensions.js │ ├── mindbender-gui │ ├── mindbender-tagger │ ├── mindbender-utils.coffee │ ├── mindtagger-defaults.conf │ ├── mindtagger │ │ ├── mindtagger-api.coffee │ │ └── mindtagger-task.coffee │ ├── package.json │ ├── search │ │ └── search-api.coffee │ └── server.coffee └── frontend │ ├── .gitignore │ ├── .jshintrc │ ├── .module.build │ ├── .module.install │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── e2e-tests │ ├── protractor.conf.js │ └── scenarios.js │ ├── js-concat-sourcemap │ ├── js-include.paths │ ├── karma.conf.js │ ├── package.json │ └── src │ ├── ace │ ├── mode-markdownish.js.in │ ├── mode-sqlish.js.in │ └── snippets │ │ ├── markdownish.js.in │ │ └── sqlish.js.in │ ├── app-navbar-header.html │ ├── app.coffee │ ├── app.less │ ├── dashboard │ ├── dashboard.coffee │ ├── header.html │ ├── images │ │ ├── loading.gif │ │ ├── plus_green.png │ │ └── red_x.png │ ├── index.html │ ├── nav.html │ ├── snapshot-list.html │ ├── snapshot-run.html │ ├── snapshot-template-editor.html │ ├── snapshot-view-reports.html │ ├── style.css │ ├── trend.html │ └── trends.html │ ├── index.html │ ├── landing.html │ ├── mindtagger │ ├── array-parsers.coffee │ ├── array-parsers_test.coffee │ ├── item-details.html │ ├── mindtagger.coffee │ ├── mode-inspection.html │ ├── mode-precision.html │ ├── mode-recall.html │ ├── navbar-bottom.html │ ├── navbar-top.html │ ├── tags-adhoc.html │ ├── tags-note.html │ ├── tags-parametric.coffee │ ├── tags-parametric.html │ ├── task.html │ ├── tasklist.html │ └── word-array.coffee │ ├── search │ ├── result-template-default.html │ ├── search.coffee │ ├── search.html │ ├── searchbar.html │ └── view.html │ └── shim │ ├── ace-angular-basepath.js │ ├── bootstrap-tooltip-with-jquery-ui.js │ └── jquery-ui-dialog-close-button-fix.js ├── mindtagger ├── backend └── frontend ├── search ├── .module.install ├── backend ├── ddlog.jq ├── frontend ├── jqDDlog ├── keep-elasticsearch-during └── mindbender-search ├── shell ├── .module.install ├── be-quiet ├── error ├── hocon2json ├── mindbender ├── mindbender-hack ├── mindbender-version ├── msg ├── usage └── verbosity-isnt ├── test ├── merge-order-specs.bats ├── nlp-sample.csv └── phone-sample.tsv └── util ├── .module.install └── hocon2json /.depends/bash: -------------------------------------------------------------------------------- 1 | ../buildkit/depends/common/bash -------------------------------------------------------------------------------- /.depends/bats: -------------------------------------------------------------------------------- 1 | ../buildkit/depends/common/bats -------------------------------------------------------------------------------- /.depends/java/commands: -------------------------------------------------------------------------------- 1 | java 2 | -------------------------------------------------------------------------------- /.depends/node_tools/commands: -------------------------------------------------------------------------------- 1 | coffee 2 | lessc 3 | uglifyjs 4 | -------------------------------------------------------------------------------- /.depends/node_tools/depends: -------------------------------------------------------------------------------- 1 | nodejs 2 | -------------------------------------------------------------------------------- /.depends/node_tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/.depends/node_tools/install.sh -------------------------------------------------------------------------------- /.depends/node_tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/.depends/node_tools/package.json -------------------------------------------------------------------------------- /.depends/node_tools/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/.depends/node_tools/paths -------------------------------------------------------------------------------- /.depends/nodejs: -------------------------------------------------------------------------------- 1 | ../buildkit/depends/common/nodejs -------------------------------------------------------------------------------- /.depends/unzip/commands: -------------------------------------------------------------------------------- 1 | unzip 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/.vimrc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/.module.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/.module.build -------------------------------------------------------------------------------- /dashboard/.module.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/.module.install -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/backend: -------------------------------------------------------------------------------- 1 | ../gui/backend/dashboard -------------------------------------------------------------------------------- /dashboard/compile-xdocs: -------------------------------------------------------------------------------- 1 | ../buildkit/compile-xdocs -------------------------------------------------------------------------------- /dashboard/compress-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/compress-json -------------------------------------------------------------------------------- /dashboard/dashboard-aggregate-values.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/dashboard-aggregate-values.coffee -------------------------------------------------------------------------------- /dashboard/dashboard-ls-reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/dashboard-ls-reports -------------------------------------------------------------------------------- /dashboard/dashboard-ls-snapshots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/dashboard-ls-snapshots -------------------------------------------------------------------------------- /dashboard/dashboard-report-content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/dashboard-report-content -------------------------------------------------------------------------------- /dashboard/dashboard-report-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/dashboard-report-template -------------------------------------------------------------------------------- /dashboard/dashboard-snapshot-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/dashboard-snapshot-config -------------------------------------------------------------------------------- /dashboard/dashboard-trends-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/dashboard-trends-config -------------------------------------------------------------------------------- /dashboard/escape-args-for-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/escape-args-for-shell -------------------------------------------------------------------------------- /dashboard/eval-coffee-on-deepdive-app-conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/eval-coffee-on-deepdive-app-conf -------------------------------------------------------------------------------- /dashboard/find-deepdive-app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/find-deepdive-app -------------------------------------------------------------------------------- /dashboard/find-deepdive-db-uri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/find-deepdive-db-uri -------------------------------------------------------------------------------- /dashboard/frontend: -------------------------------------------------------------------------------- 1 | ../gui/frontend/src/dashboard -------------------------------------------------------------------------------- /dashboard/html-table-for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/html-table-for -------------------------------------------------------------------------------- /dashboard/json-for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/json-for -------------------------------------------------------------------------------- /dashboard/json-string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/json-string -------------------------------------------------------------------------------- /dashboard/list-breadcrumb-paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/list-breadcrumb-paths -------------------------------------------------------------------------------- /dashboard/merge-order-specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/merge-order-specs -------------------------------------------------------------------------------- /dashboard/mindbender-cancel-snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/mindbender-cancel-snapshot -------------------------------------------------------------------------------- /dashboard/mindbender-dashboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/mindbender-dashboard -------------------------------------------------------------------------------- /dashboard/mindbender-produce-reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/mindbender-produce-reports -------------------------------------------------------------------------------- /dashboard/mindbender-report-task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/mindbender-report-task -------------------------------------------------------------------------------- /dashboard/mindbender-snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/mindbender-snapshot -------------------------------------------------------------------------------- /dashboard/report-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/report-log -------------------------------------------------------------------------------- /dashboard/report-sql-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/report-templates/corpus/stats/report.desc: -------------------------------------------------------------------------------- 1 | Summary statistics of the corpus. 2 | -------------------------------------------------------------------------------- /dashboard/report-templates/learning/sample-features/top-negative-features/report.desc: -------------------------------------------------------------------------------- 1 | Features with top negative learned weights. 2 | -------------------------------------------------------------------------------- /dashboard/report-templates/learning/sample-features/top-positive-features/report.desc: -------------------------------------------------------------------------------- 1 | Features with top positive learned weights. 2 | -------------------------------------------------------------------------------- /dashboard/report-templates/variable/candidate/report.desc: -------------------------------------------------------------------------------- 1 | Candidate extraction summary. 2 | -------------------------------------------------------------------------------- /dashboard/report-templates/variable/candidate/sample-frequent-candidates/report.desc: -------------------------------------------------------------------------------- 1 | Most frequently extracted candidate mentions. 2 | -------------------------------------------------------------------------------- /dashboard/report-templates/variable/feature/report.desc: -------------------------------------------------------------------------------- 1 | Feature Extraction Summary. 2 | -------------------------------------------------------------------------------- /dashboard/report-templates/variable/feature/sample-frequent-features/report.desc: -------------------------------------------------------------------------------- 1 | List of most frequently extracted features. 2 | -------------------------------------------------------------------------------- /dashboard/report-templates/variable/inference/report.desc: -------------------------------------------------------------------------------- 1 | Inference summary. 2 | -------------------------------------------------------------------------------- /dashboard/report-templates/variable/supervision/report.desc: -------------------------------------------------------------------------------- 1 | Supervision summary. 2 | -------------------------------------------------------------------------------- /dashboard/report-values.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/report-values.coffee -------------------------------------------------------------------------------- /dashboard/report-warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/report-warn -------------------------------------------------------------------------------- /dashboard/run-sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/run-sql -------------------------------------------------------------------------------- /dashboard/snapshot-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-files -------------------------------------------------------------------------------- /dashboard/snapshot-template/corpus/stats/README.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/corpus/stats/README.md.in -------------------------------------------------------------------------------- /dashboard/snapshot-template/corpus/stats/report.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/corpus/stats/report.params -------------------------------------------------------------------------------- /dashboard/snapshot-template/learning/histogram-weights-of-feature/report.sh: -------------------------------------------------------------------------------- 1 | ../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/learning/sample-features/top-negative-features/report.sh: -------------------------------------------------------------------------------- 1 | ../../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/learning/sample-features/top-positive-features/report.sh: -------------------------------------------------------------------------------- 1 | ../../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/task/sample-candidates-with-feature/report.sh: -------------------------------------------------------------------------------- 1 | ../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/README.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/variable/README.md.in -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/candidate/README.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/variable/candidate/README.md.in -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/candidate/sample-frequent-candidates/data.chart: -------------------------------------------------------------------------------- 1 | {"x":"candidate", "y":"count"} 2 | -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/candidate/sample-frequent-candidates/report.sh: -------------------------------------------------------------------------------- 1 | ../../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/feature/README.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/variable/feature/README.md.in -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/feature/histogram-candidates-per-feature/report.sh: -------------------------------------------------------------------------------- 1 | ../../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/feature/histogram-features-per-candidate/report.sh: -------------------------------------------------------------------------------- 1 | ../../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/feature/report.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/variable/feature/report.params -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/feature/sample-frequent-features/report.sh: -------------------------------------------------------------------------------- 1 | ../../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/inference/README.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/variable/inference/README.md.in -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/inference/sample-frequent-extractions/report.sh: -------------------------------------------------------------------------------- 1 | ../../../../report-sql-template.sh -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/report.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/variable/report.params -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/reports.order: -------------------------------------------------------------------------------- 1 | * 2 | candidate 3 | feature 4 | supervision 5 | inference 6 | -------------------------------------------------------------------------------- /dashboard/snapshot-template/variable/supervision/README.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/snapshot-template/variable/supervision/README.md.in -------------------------------------------------------------------------------- /dashboard/transpose-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/dashboard/transpose-json -------------------------------------------------------------------------------- /depends/.module.build: -------------------------------------------------------------------------------- 1 | ../buildkit/depends/module.build -------------------------------------------------------------------------------- /depends/.module.install: -------------------------------------------------------------------------------- 1 | ../buildkit/depends/module.install -------------------------------------------------------------------------------- /depends/bundle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/depends/bundle.conf -------------------------------------------------------------------------------- /depends/bundled/elasticsearch: -------------------------------------------------------------------------------- 1 | ../../buildkit/depends/common/elasticsearch -------------------------------------------------------------------------------- /depends/bundled/jq: -------------------------------------------------------------------------------- 1 | ../../buildkit/depends/common/jq -------------------------------------------------------------------------------- /depends/bundled/nodejs: -------------------------------------------------------------------------------- 1 | ../../buildkit/depends/common/nodejs -------------------------------------------------------------------------------- /depends/bundled/pv: -------------------------------------------------------------------------------- 1 | ../../buildkit/depends/common/pv -------------------------------------------------------------------------------- /depends/check-runtime-depends-once: -------------------------------------------------------------------------------- 1 | ../buildkit/depends/check-runtime-depends-once -------------------------------------------------------------------------------- /depends/nodejs/.module.build: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | npm install 4 | -------------------------------------------------------------------------------- /depends/nodejs/.module.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/depends/nodejs/.module.install -------------------------------------------------------------------------------- /depends/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/depends/nodejs/package.json -------------------------------------------------------------------------------- /depends/runtime/pyhocon/commands: -------------------------------------------------------------------------------- 1 | pyhocon 2 | -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/application.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot-basic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/dd-genomics/snapshot-basic.conf -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/dd-genomics/snapshot-default.conf -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/dd-genomics/snapshot/20150516-2/README.md -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/dd-genomics/snapshot/20150516-2/reports.html -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/dd-genomics/snapshot/20150516-2/reports.ids -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/dd-genomics/snapshot/20150516-2/reports.json -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/dd-genomics/snapshot/20150516-2/reports.log -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports.paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/dd-genomics/snapshot/20150516-2/reports.paths -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/corpus/stats/.report.id: -------------------------------------------------------------------------------- 1 | corpus/stats(sentences_input) 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/corpus/stats/.report.params.optional: -------------------------------------------------------------------------------- 1 | document_id_column 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/corpus/stats/.report.params.required: -------------------------------------------------------------------------------- 1 | table 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/histogram-weights-of-feature/.report.id: -------------------------------------------------------------------------------- 1 | learning/histogram-weights-of-feature 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/histogram-weights-of-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/histogram-weights-of-feature/data.chart: -------------------------------------------------------------------------------- 1 | {"x": "weight_lt", "y": "num_features"} 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/sample-features/top-negative-features/.report.params.optional: -------------------------------------------------------------------------------- 1 | num_top_weighted_features 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/sample-features/top-negative-features/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/sample-features/top-negative-features/report.params.json: -------------------------------------------------------------------------------- 1 | {"num_top_weighted_features":50} -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/sample-features/top-positive-features/.report.params.optional: -------------------------------------------------------------------------------- 1 | num_top_weighted_features 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/sample-features/top-positive-features/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/learning/sample-features/top-positive-features/report.params.json: -------------------------------------------------------------------------------- 1 | {"num_top_weighted_features":50} -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/.report.id: -------------------------------------------------------------------------------- 1 | variable(gene_mentions.is_correct) 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Variable gene_mentions.is_correct 3 | 4 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/candidate/.report.id: -------------------------------------------------------------------------------- 1 | variable(gene_mentions.is_correct)/candidate 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/candidate/sample-frequent-candidates/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/candidate/sample-frequent-candidates/data.chart: -------------------------------------------------------------------------------- 1 | {"x":"candidate", "y":"count"} 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/feature/.report.id: -------------------------------------------------------------------------------- 1 | variable(gene_mentions.is_correct)/feature 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/feature/histogram-candidates-per-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/feature/histogram-features-per-candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/feature/sample-frequent-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/.report.id: -------------------------------------------------------------------------------- 1 | variable(gene_mentions.is_correct)/inference 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/calibration-plot/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/histogram-weights-of-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/histogram-weights-of-feature/data.chart: -------------------------------------------------------------------------------- 1 | {"x": "weight_lt", "y": "num_features"} 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/quality/.report.id: -------------------------------------------------------------------------------- 1 | variable(gene_mentions.is_correct)/inference/quality 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/quality/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/sample-frequent-extractions/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/sample-frequent-extractions/data.csv: -------------------------------------------------------------------------------- 1 | words,count 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/sample-frequent-extractions/data.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/inference/sample-weighted-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/quality/.report.id: -------------------------------------------------------------------------------- 1 | variable(gene_mentions.is_correct)/quality 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/quality/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/reports.order: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/supervision/.report.id: -------------------------------------------------------------------------------- 1 | variable(gene_mentions.is_correct)/supervision 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable-2/supervision/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/.report.id: -------------------------------------------------------------------------------- 1 | variable(pheno_mentions.is_correct) 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Variable pheno_mentions.is_correct 3 | 4 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/candidate/.report.id: -------------------------------------------------------------------------------- 1 | variable(pheno_mentions.is_correct)/candidate 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/candidate/sample-frequent-candidates/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/candidate/sample-frequent-candidates/data.chart: -------------------------------------------------------------------------------- 1 | {"x":"candidate", "y":"count"} 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/feature/.report.id: -------------------------------------------------------------------------------- 1 | variable(pheno_mentions.is_correct)/feature 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/feature/histogram-candidates-per-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/feature/histogram-features-per-candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/feature/sample-frequent-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/.report.id: -------------------------------------------------------------------------------- 1 | variable(pheno_mentions.is_correct)/inference 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/calibration-plot/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/histogram-weights-of-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/histogram-weights-of-feature/data.chart: -------------------------------------------------------------------------------- 1 | {"x": "weight_lt", "y": "num_features"} 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/quality/.report.id: -------------------------------------------------------------------------------- 1 | variable(pheno_mentions.is_correct)/inference/quality 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/quality/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/sample-frequent-extractions/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/sample-frequent-extractions/data.csv: -------------------------------------------------------------------------------- 1 | words,count 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/sample-frequent-extractions/data.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/inference/sample-weighted-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/quality/.report.id: -------------------------------------------------------------------------------- 1 | variable(pheno_mentions.is_correct)/quality 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/quality/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/reports.order: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/supervision/.report.id: -------------------------------------------------------------------------------- 1 | variable(pheno_mentions.is_correct)/supervision 2 | -------------------------------------------------------------------------------- /examples/dashboard/dd-genomics/snapshot/20150516-2/reports/variable/supervision/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/spouse_example/application.conf -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/spouse_example/env.sh -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/spouse_example/run.sh -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/spouse_example/schema.sql -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/setup_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/spouse_example/setup_database.sh -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/spouse_example/snapshot-default.conf -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/spouse_example/snapshot-files -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/spouse_example/snapshot/20150527-29/README.md -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/corpus/stats/.report.id: -------------------------------------------------------------------------------- 1 | corpus/stats(sentences) 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/corpus/stats/.report.params.optional: -------------------------------------------------------------------------------- 1 | document_id_column 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/corpus/stats/.report.params.required: -------------------------------------------------------------------------------- 1 | table 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/learning/histogram-weights-of-feature/.report.id: -------------------------------------------------------------------------------- 1 | learning/histogram-weights-of-feature 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/learning/histogram-weights-of-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/learning/sample-features/top-negative-features/.report.params.optional: -------------------------------------------------------------------------------- 1 | num_top_weighted_features 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/learning/sample-features/top-negative-features/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/learning/sample-features/top-negative-features/report.params.json: -------------------------------------------------------------------------------- 1 | {"num_top_weighted_features":10} -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/learning/sample-features/top-positive-features/.report.params.optional: -------------------------------------------------------------------------------- 1 | num_top_weighted_features 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/learning/sample-features/top-positive-features/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/learning/sample-features/top-positive-features/report.params.json: -------------------------------------------------------------------------------- 1 | {"num_top_weighted_features":10} -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/.report.id: -------------------------------------------------------------------------------- 1 | variable(has_spouse.is_true) 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Variable `has_spouse.is_true` 3 | 4 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/candidate/.report.id: -------------------------------------------------------------------------------- 1 | variable(has_spouse.is_true)/candidate 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/candidate/sample-frequent-candidates/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/candidate/sample-frequent-candidates/data.chart: -------------------------------------------------------------------------------- 1 | {"x":"candidate", "y":"count"} 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/feature/.report.id: -------------------------------------------------------------------------------- 1 | variable(has_spouse.is_true)/feature 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/feature/histogram-candidates-per-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/feature/histogram-features-per-candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/feature/sample-frequent-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/inference/.report.id: -------------------------------------------------------------------------------- 1 | variable(has_spouse.is_true)/inference 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/inference/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/inference/calibration-plot/.report.id: -------------------------------------------------------------------------------- 1 | variable(has_spouse.is_true)/inference/calibration-plot 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/inference/calibration-plot/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/inference/sample-frequent-extractions/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/reports.order: -------------------------------------------------------------------------------- 1 | * 2 | candidate 3 | feature 4 | supervision 5 | inference 6 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/supervision/.report.id: -------------------------------------------------------------------------------- 1 | variable(has_spouse.is_true)/supervision 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/supervision/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/20150527-29/reports/variable/supervision/plot-supervision-by-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/spouse_example/snapshot/LATEST: -------------------------------------------------------------------------------- 1 | 20150527-29 -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/application.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/stanford-memex/snapshot-default.conf -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-2/reports.ids: -------------------------------------------------------------------------------- 1 | corpus/stats sentences_escort 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-2/reports.paths: -------------------------------------------------------------------------------- 1 | reports/corpus/stats 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-2/reports/corpus/stats/.report.id: -------------------------------------------------------------------------------- 1 | corpus/stats sentences_escort 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-2/reports/corpus/stats/.report.params.optional: -------------------------------------------------------------------------------- 1 | document_id_column 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-2/reports/corpus/stats/.report.params.required: -------------------------------------------------------------------------------- 1 | table 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/.report.id: -------------------------------------------------------------------------------- 1 | variable locations.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Variable locations.is_correct 3 | 4 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/candidate/.report.id: -------------------------------------------------------------------------------- 1 | variable/candidate locations.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/candidate/sample-frequent-candidates/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/candidate/sample-frequent-candidates/frequent_candidates.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/feature/.report.id: -------------------------------------------------------------------------------- 1 | variable/feature locations.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/feature/histogram-candidates-per-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/feature/histogram-features-per-candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/feature/sample-frequent-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/inference/.report.id: -------------------------------------------------------------------------------- 1 | variable/inference locations.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/inference/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/inference/histogram-weights-of-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/inference/sample-frequent-extractions/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/inference/sample-frequent-extractions/top_extractions.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/inference/sample-weighted-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/quality/.report.id: -------------------------------------------------------------------------------- 1 | variable/quality locations.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/quality/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/supervision/.report.id: -------------------------------------------------------------------------------- 1 | variable/supervision locations.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable-2/supervision/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/.report.id: -------------------------------------------------------------------------------- 1 | variable rates.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Variable rates.is_correct 3 | 4 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/candidate/.report.id: -------------------------------------------------------------------------------- 1 | variable/candidate rates.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/candidate/sample-frequent-candidates/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/feature/.report.id: -------------------------------------------------------------------------------- 1 | variable/feature rates.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/feature/histogram-candidates-per-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/feature/histogram-features-per-candidate/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/feature/sample-frequent-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/inference/.report.id: -------------------------------------------------------------------------------- 1 | variable/inference rates.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/inference/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/inference/histogram-weights-of-feature/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/inference/sample-frequent-extractions/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/inference/sample-weighted-features/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/quality/.report.id: -------------------------------------------------------------------------------- 1 | variable/quality rates.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/quality/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/supervision/.report.id: -------------------------------------------------------------------------------- 1 | variable/supervision rates.is_correct 2 | -------------------------------------------------------------------------------- /examples/dashboard/stanford-memex/snapshot/20150410-6/reports/variable/supervision/.report.params.required: -------------------------------------------------------------------------------- 1 | variable 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/application.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/dashboard-trends.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/dashboard-trends.conf -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/env.sh -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/run.sh -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/schema.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/setup_database.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot-default.conf: -------------------------------------------------------------------------------- 1 | report trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot-files -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/.dburi: -------------------------------------------------------------------------------- 1 | postgresql://localhost/deepdive_test 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-1/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-1/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:17 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-1/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:17 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-10/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":691,"y":0.24093,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:35 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-10/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:35 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-11/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":7266,"y":0.26169,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:37 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-11/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:37 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-12/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":30450,"y":0.4559,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:39 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-12/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:39 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-13/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":18650,"y":0.507,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:41 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-13/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:41 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-14/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":29236,"y":0.2853,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:43 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-14/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:43 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-15/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":3816,"y":0.19873,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:44 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-15/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:44 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-16/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":2046,"y":0.15445,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:46 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-16/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:46 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-17/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":15073,"y":0.2989,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:48 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-17/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:48 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-18/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":901,"y":0.18123,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:50 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-18/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:50 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-19/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":6661,"y":0.29956,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:52 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-19/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:52 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-2/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-2/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":8373,"y":0.119,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:19 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-2/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:19 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-20/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":7129,"y":0.24148,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:54 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-20/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:54 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-21/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":30829,"y":0.31174,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:56 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-21/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:56 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-22/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":8268,"y":0.2554,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:58 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-22/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:58 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-23/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":6412,"y":0.3897,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:00 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-23/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:00 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-24/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":3878,"y":0.3402,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:02 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-24/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:02 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-25/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":18926,"y":0.13304,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:04 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-25/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:04 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-26/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":10945,"y":0.31999,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:06 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-26/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:06 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-27/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":5265,"y":0.16092,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:08 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-27/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:08 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-28/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":15818,"y":0.18835,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:09 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-28/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:09 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-29/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":9912,"y":0.14244,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:11 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-29/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:11 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-3/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-3/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":458,"y":0.11167,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:21 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-3/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:21 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-30/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":26520,"y":0.16048,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:13 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-30/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:13 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-31/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":10907,"y":0.19056,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:15 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-31/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:15 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-32/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":2769,"y":0.24086,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:17 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-32/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:17 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-33/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":30706,"y":0.21473,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:19 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-33/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:19 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-34/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":8259,"y":0.12515,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:21 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-34/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:21 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-35/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":8830,"y":0.10931,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:23 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-35/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:58:23 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-4/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-4/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":13692,"y":0.7781,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:23 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-4/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:23 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-5/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-5/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":3088,"y":0.32544,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:25 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-5/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:25 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-6/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-6/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":18351,"y":0.19446,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:27 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-6/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:27 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-7/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-7/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":23765,"y":0.19701,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:29 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-7/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:29 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-8/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-8/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":2652,"y":0.23837,"flag":"PASS"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:31 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-8/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:31 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-9/README.md -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports.ids: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/dashboard/trends-demo/snapshot/20150714-9/reports.log -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports.names: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports.paths: -------------------------------------------------------------------------------- 1 | reports/trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports/trends-demo/.report.id: -------------------------------------------------------------------------------- 1 | trends-demo 2 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports/trends-demo/.report.params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports/trends-demo/.report.params.optional: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports/trends-demo/.report.params.required: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports/trends-demo/.report.params.sh: -------------------------------------------------------------------------------- 1 | # named parameters given 2 | 3 | export 4 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports/trends-demo/report.json: -------------------------------------------------------------------------------- 1 | {"x":15115,"y":0.24896,"flag":"FAIL"} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/reports/trends-demo/report.params.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/snapshot.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:33 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/20150714-9/snapshot.last.conf: -------------------------------------------------------------------------------- 1 | # snapshot at 2015-07-14T10:57:33 2 | report trends-demo 3 | -------------------------------------------------------------------------------- /examples/dashboard/trends-demo/snapshot/PREVIOUS: -------------------------------------------------------------------------------- 1 | 20150714-34 -------------------------------------------------------------------------------- /examples/labeling/genomics-precision-parameterized/input-a.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-precision-parameterized/input-a.tsv -------------------------------------------------------------------------------- /examples/labeling/genomics-precision-parameterized/input-b.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-precision-parameterized/input-b.tsv -------------------------------------------------------------------------------- /examples/labeling/genomics-precision-parameterized/template.html: -------------------------------------------------------------------------------- 1 | ../genomics-precision/template.html -------------------------------------------------------------------------------- /examples/labeling/genomics-precision/gene_mentions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-precision/gene_mentions.tsv -------------------------------------------------------------------------------- /examples/labeling/genomics-precision/mindtagger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-precision/mindtagger.conf -------------------------------------------------------------------------------- /examples/labeling/genomics-precision/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-precision/template.html -------------------------------------------------------------------------------- /examples/labeling/genomics-recall-relation/input.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-recall-relation/input.tsv -------------------------------------------------------------------------------- /examples/labeling/genomics-recall-relation/mindtagger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-recall-relation/mindtagger.conf -------------------------------------------------------------------------------- /examples/labeling/genomics-recall-relation/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-recall-relation/template.html -------------------------------------------------------------------------------- /examples/labeling/genomics-recall/input.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-recall/input.tsv -------------------------------------------------------------------------------- /examples/labeling/genomics-recall/mindtagger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-recall/mindtagger.conf -------------------------------------------------------------------------------- /examples/labeling/genomics-recall/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/genomics-recall/template.html -------------------------------------------------------------------------------- /examples/labeling/images-labeling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/images-labeling/.gitignore -------------------------------------------------------------------------------- /examples/labeling/images-labeling/images-tutoring,flyer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/images-labeling/images-tutoring,flyer.json -------------------------------------------------------------------------------- /examples/labeling/images-labeling/images.json: -------------------------------------------------------------------------------- 1 | images-tutoring,flyer.json -------------------------------------------------------------------------------- /examples/labeling/images-labeling/mindtagger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/images-labeling/mindtagger.conf -------------------------------------------------------------------------------- /examples/labeling/images-labeling/prep-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/images-labeling/prep-images.sh -------------------------------------------------------------------------------- /examples/labeling/images-labeling/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/images-labeling/template.html -------------------------------------------------------------------------------- /examples/labeling/start-mindtagger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/labeling/start-mindtagger.sh -------------------------------------------------------------------------------- /examples/spouse_example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/spouse_example/.gitignore -------------------------------------------------------------------------------- /examples/spouse_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/spouse_example/README.md -------------------------------------------------------------------------------- /examples/spouse_example/app.ddlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/spouse_example/app.ddlog -------------------------------------------------------------------------------- /examples/spouse_example/db.url: -------------------------------------------------------------------------------- 1 | postgresql://localhost/deepdive_spouse_ddlog 2 | -------------------------------------------------------------------------------- /examples/spouse_example/deepdive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/spouse_example/deepdive.conf -------------------------------------------------------------------------------- /examples/spouse_example/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/spouse_example/demo.sh -------------------------------------------------------------------------------- /examples/spouse_example/input/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/spouse_example/input/init.sh -------------------------------------------------------------------------------- /examples/spouse_example/snapshot-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/spouse_example/snapshot-default.conf -------------------------------------------------------------------------------- /examples/spouse_example/snapshot-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/examples/spouse_example/snapshot-files -------------------------------------------------------------------------------- /gui/backend/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /gui/backend/.module.build: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -eu 3 | 4 | npm install 5 | -------------------------------------------------------------------------------- /gui/backend/.module.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/.module.install -------------------------------------------------------------------------------- /gui/backend/dashboard/dashboard-api.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/dashboard/dashboard-api.coffee -------------------------------------------------------------------------------- /gui/backend/extensions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/extensions.coffee -------------------------------------------------------------------------------- /gui/backend/extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/extensions.js -------------------------------------------------------------------------------- /gui/backend/mindbender-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/mindbender-gui -------------------------------------------------------------------------------- /gui/backend/mindbender-tagger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/mindbender-tagger -------------------------------------------------------------------------------- /gui/backend/mindbender-utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/mindbender-utils.coffee -------------------------------------------------------------------------------- /gui/backend/mindtagger-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/mindtagger-defaults.conf -------------------------------------------------------------------------------- /gui/backend/mindtagger/mindtagger-api.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/mindtagger/mindtagger-api.coffee -------------------------------------------------------------------------------- /gui/backend/mindtagger/mindtagger-task.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/mindtagger/mindtagger-task.coffee -------------------------------------------------------------------------------- /gui/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/package.json -------------------------------------------------------------------------------- /gui/backend/search/search-api.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/search/search-api.coffee -------------------------------------------------------------------------------- /gui/backend/server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/backend/server.coffee -------------------------------------------------------------------------------- /gui/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/.gitignore -------------------------------------------------------------------------------- /gui/frontend/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/.jshintrc -------------------------------------------------------------------------------- /gui/frontend/.module.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/.module.build -------------------------------------------------------------------------------- /gui/frontend/.module.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/.module.install -------------------------------------------------------------------------------- /gui/frontend/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/.travis.yml -------------------------------------------------------------------------------- /gui/frontend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/LICENSE -------------------------------------------------------------------------------- /gui/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/README.md -------------------------------------------------------------------------------- /gui/frontend/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/bower.json -------------------------------------------------------------------------------- /gui/frontend/e2e-tests/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/e2e-tests/protractor.conf.js -------------------------------------------------------------------------------- /gui/frontend/e2e-tests/scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/e2e-tests/scenarios.js -------------------------------------------------------------------------------- /gui/frontend/js-concat-sourcemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/js-concat-sourcemap -------------------------------------------------------------------------------- /gui/frontend/js-include.paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/js-include.paths -------------------------------------------------------------------------------- /gui/frontend/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/karma.conf.js -------------------------------------------------------------------------------- /gui/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/package.json -------------------------------------------------------------------------------- /gui/frontend/src/ace/mode-markdownish.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/ace/mode-markdownish.js.in -------------------------------------------------------------------------------- /gui/frontend/src/ace/mode-sqlish.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/ace/mode-sqlish.js.in -------------------------------------------------------------------------------- /gui/frontend/src/ace/snippets/markdownish.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/ace/snippets/markdownish.js.in -------------------------------------------------------------------------------- /gui/frontend/src/ace/snippets/sqlish.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/ace/snippets/sqlish.js.in -------------------------------------------------------------------------------- /gui/frontend/src/app-navbar-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/app-navbar-header.html -------------------------------------------------------------------------------- /gui/frontend/src/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/app.coffee -------------------------------------------------------------------------------- /gui/frontend/src/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/app.less -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/dashboard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/dashboard.coffee -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/header.html -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/images/loading.gif -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/images/plus_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/images/plus_green.png -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/images/red_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/images/red_x.png -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/index.html -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/nav.html -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/snapshot-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/snapshot-list.html -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/snapshot-run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/snapshot-run.html -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/snapshot-template-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/snapshot-template-editor.html -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/snapshot-view-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/snapshot-view-reports.html -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/style.css -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/trend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/trend.html -------------------------------------------------------------------------------- /gui/frontend/src/dashboard/trends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/dashboard/trends.html -------------------------------------------------------------------------------- /gui/frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/index.html -------------------------------------------------------------------------------- /gui/frontend/src/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/landing.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/array-parsers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/array-parsers.coffee -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/array-parsers_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/array-parsers_test.coffee -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/item-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/item-details.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/mindtagger.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/mindtagger.coffee -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/mode-inspection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/mode-inspection.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/mode-precision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/mode-precision.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/mode-recall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/mode-recall.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/navbar-bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/navbar-bottom.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/navbar-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/navbar-top.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/tags-adhoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/tags-adhoc.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/tags-note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/tags-note.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/tags-parametric.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/tags-parametric.coffee -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/tags-parametric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/tags-parametric.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/task.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/tasklist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/tasklist.html -------------------------------------------------------------------------------- /gui/frontend/src/mindtagger/word-array.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/mindtagger/word-array.coffee -------------------------------------------------------------------------------- /gui/frontend/src/search/result-template-default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/search/result-template-default.html -------------------------------------------------------------------------------- /gui/frontend/src/search/search.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/search/search.coffee -------------------------------------------------------------------------------- /gui/frontend/src/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/search/search.html -------------------------------------------------------------------------------- /gui/frontend/src/search/searchbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/search/searchbar.html -------------------------------------------------------------------------------- /gui/frontend/src/search/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/search/view.html -------------------------------------------------------------------------------- /gui/frontend/src/shim/ace-angular-basepath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/shim/ace-angular-basepath.js -------------------------------------------------------------------------------- /gui/frontend/src/shim/bootstrap-tooltip-with-jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/shim/bootstrap-tooltip-with-jquery-ui.js -------------------------------------------------------------------------------- /gui/frontend/src/shim/jquery-ui-dialog-close-button-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/gui/frontend/src/shim/jquery-ui-dialog-close-button-fix.js -------------------------------------------------------------------------------- /mindtagger/backend: -------------------------------------------------------------------------------- 1 | ../gui/backend/mindtagger -------------------------------------------------------------------------------- /mindtagger/frontend: -------------------------------------------------------------------------------- 1 | ../gui/frontend/src/mindtagger -------------------------------------------------------------------------------- /search/.module.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/search/.module.install -------------------------------------------------------------------------------- /search/backend: -------------------------------------------------------------------------------- 1 | ../gui/backend/search -------------------------------------------------------------------------------- /search/ddlog.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/search/ddlog.jq -------------------------------------------------------------------------------- /search/frontend: -------------------------------------------------------------------------------- 1 | ../gui/frontend/src/search -------------------------------------------------------------------------------- /search/jqDDlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/search/jqDDlog -------------------------------------------------------------------------------- /search/keep-elasticsearch-during: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/search/keep-elasticsearch-during -------------------------------------------------------------------------------- /search/mindbender-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/search/mindbender-search -------------------------------------------------------------------------------- /shell/.module.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/.module.install -------------------------------------------------------------------------------- /shell/be-quiet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/be-quiet -------------------------------------------------------------------------------- /shell/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/error -------------------------------------------------------------------------------- /shell/hocon2json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/hocon2json -------------------------------------------------------------------------------- /shell/mindbender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/mindbender -------------------------------------------------------------------------------- /shell/mindbender-hack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/mindbender-hack -------------------------------------------------------------------------------- /shell/mindbender-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/mindbender-version -------------------------------------------------------------------------------- /shell/msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/msg -------------------------------------------------------------------------------- /shell/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/usage -------------------------------------------------------------------------------- /shell/verbosity-isnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/shell/verbosity-isnt -------------------------------------------------------------------------------- /test/merge-order-specs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/test/merge-order-specs.bats -------------------------------------------------------------------------------- /test/nlp-sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/test/nlp-sample.csv -------------------------------------------------------------------------------- /test/phone-sample.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/test/phone-sample.tsv -------------------------------------------------------------------------------- /util/.module.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/util/.module.install -------------------------------------------------------------------------------- /util/hocon2json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HazyResearch/mindbender/HEAD/util/hocon2json --------------------------------------------------------------------------------