gitextract_dc6ud5d9/ ├── .gitignore ├── LICENSE.txt ├── README.md ├── abstracts/ │ ├── 00_pymc/ │ │ └── pymc3.rst │ ├── 00_rudiger/ │ │ └── 00_rudiger.rst │ ├── aaron_meurer/ │ │ └── sympy.rst │ ├── dask/ │ │ └── dask.rst │ ├── mpi4py/ │ │ └── mpi4py.rst │ └── ryan_abernathey/ │ └── xarray.rst ├── environment.yml ├── examples/ │ ├── 00_bibderwalt/ │ │ ├── 00_bibderwalt.rst │ │ └── mybib.bib │ └── 00_vanderwalt/ │ └── 00_vanderwalt.rst ├── make_paper.sh ├── papers/ │ ├── joshua_warner/ │ │ ├── 00_scikitimage.rst │ │ ├── reproduction_corner.ipynb │ │ ├── reproduction_denoise.ipynb │ │ └── reproduction_pano.ipynb │ ├── maxwell_margenot/ │ │ ├── bayesian_linear_regression.ipynb │ │ ├── maxwell_margenot.rst │ │ └── mybib.bib │ ├── numba/ │ │ ├── 00_numba.rst │ │ ├── array_vs_list/ │ │ │ ├── array_vs_list.ipynb │ │ │ └── array_vs_list.rst │ │ ├── gufunc/ │ │ │ ├── gufunc.ipynb │ │ │ └── gufunc.rst │ │ ├── intro/ │ │ │ └── intro.rst │ │ ├── looplifting/ │ │ │ ├── LoopLiftingCode.ipynb │ │ │ ├── inspect_types_ex.py │ │ │ └── looplifting.rst │ │ ├── nogilthreads/ │ │ │ ├── BadThreadsExample.ipynb │ │ │ ├── Mandel.ipynb │ │ │ └── nogilthreads.rst │ │ └── piecewise/ │ │ ├── piecewise.ipynb │ │ └── piecewise.rst │ ├── prabhu_ramachandran/ │ │ ├── code/ │ │ │ ├── viewer0.py │ │ │ ├── viewer1.py │ │ │ └── viewer2.py │ │ └── mayavi_chapter.rst │ ├── scipy/ │ │ ├── code/ │ │ │ └── signal/ │ │ │ ├── LICENSE.txt │ │ │ ├── bandpass_batch_example.py │ │ │ ├── bandpass_example.py │ │ │ ├── butter.py │ │ │ ├── firlp_lowpass_example.py │ │ │ ├── firls_example.py │ │ │ ├── firwin2_examples.py │ │ │ ├── initial_conditions.py │ │ │ ├── kaiser_lowpass_filter_design.py │ │ │ ├── lowpass_design_specs.py │ │ │ ├── make_data.py │ │ │ ├── moving_avg_freq_response.py │ │ │ ├── opt_lowpass.py │ │ │ ├── pressure_example.py │ │ │ ├── remez_example.py │ │ │ ├── sos_bandpass_response.py │ │ │ └── unstable_butterworth.py │ │ └── scipy.rst │ └── yuan_tang_hongliang_liu/ │ ├── convert.sh │ ├── distributed_and_gpus.md │ ├── distributed_and_gpus.txt │ ├── intro.txt │ ├── main_functionalities.txt │ ├── model_tune.md │ ├── model_tune.txt │ ├── parameter_explained.md │ ├── parameter_explained.txt │ ├── references.txt │ ├── vs_gbdt.md │ ├── vs_gbdt.txt │ └── xgboost_chapter.rst ├── publisher/ │ ├── Makefile │ ├── _static/ │ │ ├── common.css │ │ ├── google_analytics.js │ │ ├── proc_links.js │ │ ├── pydata-cookbook.css │ │ ├── pydata.sty │ │ ├── screen.css │ │ └── status.sty │ ├── _templates/ │ │ ├── article.bib.tmpl │ │ ├── article.html.tmpl │ │ ├── copyright.tex.tmpl │ │ ├── header.html.tmpl │ │ ├── index.html.tmpl │ │ ├── organization.html.tmpl │ │ ├── organization.tex.tmpl │ │ ├── proceedings.bib.tmpl │ │ ├── proceedings.tex.tmpl │ │ ├── students.html.tmpl │ │ ├── students.tex.tmpl │ │ ├── title.tex.tmpl │ │ └── toc.tex.tmpl │ ├── build_html.py │ ├── build_paper.py │ ├── build_papers.py │ ├── build_template.py │ ├── conf.py │ ├── mail/ │ │ ├── _mailer.py │ │ ├── email.json │ │ ├── mail_authors.py │ │ ├── mail_authors_example.txt │ │ ├── mail_reviewers.py │ │ └── templates/ │ │ ├── author-revision.txt.tmpl │ │ └── reviewer-invite.txt.tmpl │ ├── options.py │ ├── tempita/ │ │ ├── __init__.py │ │ ├── _looper.py │ │ └── compat3.py │ └── writer/ │ ├── __init__.py │ ├── code_block.py │ ├── rstmath.py │ └── sphinx_highlight.py ├── pydata-cookbook.json ├── review_criteria.md └── reviews/ ├── README ├── invite-abstract-reviews.rst ├── invite-paper-reviews.rst ├── invite-reviewer.txt.in ├── review-template.rst └── submission-template.rst