├── .gitignore ├── README.md ├── app.py ├── app2.py ├── data ├── anomaly.plot ├── anomaly_scores.csv ├── anomaly_scores_disease_person1.csv ├── anomaly_scores_heathly_person1.csv ├── anomaly_scores_single_value.csv ├── disease_person1.csv ├── disease_person1_converted.csv ├── disease_person1_fft_converted.csv ├── disease_person2.csv ├── disease_person2_converted.csv ├── disease_person3.csv ├── disease_person3_converted.csv ├── fft_plot.plt ├── healthy_person1.csv ├── healthy_person1_converted.csv ├── healthy_person1_fft_converted.csv ├── healthy_person2.csv ├── healthy_person2_converted.csv ├── healthy_person3.csv ├── healthy_person3_converted.csv ├── healthy_person4.csv ├── healthy_person4_converted.csv ├── learning_list.txt └── test.plt ├── img └── out.png ├── out.png ├── plot.py ├── src ├── __init__.py ├── model_params │ ├── __init__.py │ ├── model_params_anomaly.py │ ├── model_params_common.py │ ├── model_params_coordinate.py │ ├── model_params_generated.py │ ├── model_params_normal.py │ └── model_params_vector.py ├── nupic_anomaly_output.py ├── run.py └── vector_anomaly.py ├── static ├── css │ ├── bootstrap.css │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── jquery.js └── progress.gif ├── templates ├── analysis.html ├── index.html └── startbootstrap-bare-gh-pages │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── index.html │ └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── jquery.js ├── test.sh └── uploads ├── anomaly_scores.csv ├── anomaly_scores_disease_person1.csv ├── disease_person1.csv ├── disease_person1_converted.csv ├── disease_person2_converted.csv ├── disease_person3.csv ├── disease_person3_converted.csv ├── healthy_person3.csv ├── healthy_person3_converted.csv └── healthy_person4.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/app.py -------------------------------------------------------------------------------- /app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/app2.py -------------------------------------------------------------------------------- /data/anomaly.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/anomaly.plot -------------------------------------------------------------------------------- /data/anomaly_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/anomaly_scores.csv -------------------------------------------------------------------------------- /data/anomaly_scores_disease_person1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/anomaly_scores_disease_person1.csv -------------------------------------------------------------------------------- /data/anomaly_scores_heathly_person1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/anomaly_scores_heathly_person1.csv -------------------------------------------------------------------------------- /data/anomaly_scores_single_value.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/anomaly_scores_single_value.csv -------------------------------------------------------------------------------- /data/disease_person1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/disease_person1.csv -------------------------------------------------------------------------------- /data/disease_person1_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/disease_person1_converted.csv -------------------------------------------------------------------------------- /data/disease_person1_fft_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/disease_person1_fft_converted.csv -------------------------------------------------------------------------------- /data/disease_person2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/disease_person2.csv -------------------------------------------------------------------------------- /data/disease_person2_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/disease_person2_converted.csv -------------------------------------------------------------------------------- /data/disease_person3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/disease_person3.csv -------------------------------------------------------------------------------- /data/disease_person3_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/disease_person3_converted.csv -------------------------------------------------------------------------------- /data/fft_plot.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/fft_plot.plt -------------------------------------------------------------------------------- /data/healthy_person1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person1.csv -------------------------------------------------------------------------------- /data/healthy_person1_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person1_converted.csv -------------------------------------------------------------------------------- /data/healthy_person1_fft_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person1_fft_converted.csv -------------------------------------------------------------------------------- /data/healthy_person2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person2.csv -------------------------------------------------------------------------------- /data/healthy_person2_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person2_converted.csv -------------------------------------------------------------------------------- /data/healthy_person3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person3.csv -------------------------------------------------------------------------------- /data/healthy_person3_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person3_converted.csv -------------------------------------------------------------------------------- /data/healthy_person4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person4.csv -------------------------------------------------------------------------------- /data/healthy_person4_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/healthy_person4_converted.csv -------------------------------------------------------------------------------- /data/learning_list.txt: -------------------------------------------------------------------------------- 1 | disease_person3_converted 2 | -------------------------------------------------------------------------------- /data/test.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/data/test.plt -------------------------------------------------------------------------------- /img/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/img/out.png -------------------------------------------------------------------------------- /out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/out.png -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/plot.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/model_params/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/model_params/model_params_anomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/model_params/model_params_anomaly.py -------------------------------------------------------------------------------- /src/model_params/model_params_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/model_params/model_params_common.py -------------------------------------------------------------------------------- /src/model_params/model_params_coordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/model_params/model_params_coordinate.py -------------------------------------------------------------------------------- /src/model_params/model_params_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/model_params/model_params_generated.py -------------------------------------------------------------------------------- /src/model_params/model_params_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/model_params/model_params_normal.py -------------------------------------------------------------------------------- /src/model_params/model_params_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/model_params/model_params_vector.py -------------------------------------------------------------------------------- /src/nupic_anomaly_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/nupic_anomaly_output.py -------------------------------------------------------------------------------- /src/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/run.py -------------------------------------------------------------------------------- /src/vector_anomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/src/vector_anomaly.py -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /static/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/static/progress.gif -------------------------------------------------------------------------------- /templates/analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/analysis.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/LICENSE -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/README.md -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/css/bootstrap.css -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/css/bootstrap.min.css -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/index.html -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/js/bootstrap.js -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/js/bootstrap.min.js -------------------------------------------------------------------------------- /templates/startbootstrap-bare-gh-pages/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/templates/startbootstrap-bare-gh-pages/js/jquery.js -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | 2 | echo "10" 3 | ./src/run.py --plot 4 | -------------------------------------------------------------------------------- /uploads/anomaly_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/anomaly_scores.csv -------------------------------------------------------------------------------- /uploads/anomaly_scores_disease_person1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/anomaly_scores_disease_person1.csv -------------------------------------------------------------------------------- /uploads/disease_person1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/disease_person1.csv -------------------------------------------------------------------------------- /uploads/disease_person1_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/disease_person1_converted.csv -------------------------------------------------------------------------------- /uploads/disease_person2_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/disease_person2_converted.csv -------------------------------------------------------------------------------- /uploads/disease_person3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/disease_person3.csv -------------------------------------------------------------------------------- /uploads/disease_person3_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/disease_person3_converted.csv -------------------------------------------------------------------------------- /uploads/healthy_person3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/healthy_person3.csv -------------------------------------------------------------------------------- /uploads/healthy_person3_converted.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/healthy_person3_converted.csv -------------------------------------------------------------------------------- /uploads/healthy_person4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshaynathr/deep_heart_hackatho/HEAD/uploads/healthy_person4.csv --------------------------------------------------------------------------------