Install working tensorflow or pytorch via standard conda environment workflow.
The recommended conda-based install process works smoothly:
$ # Create a fresh environment| #!/usr/bin/env python3 | |
| """ | |
| quicky script that compares two conda environments | |
| can be handy for debugging differences between two environments | |
| This could be made much cleaner and more flexible -- but it does the job. | |
| Please let me know if you extend or improve it. |
| #!/usr/bin/env python | |
| # Copyright: This document has been placed in the public domain. | |
| """ | |
| Taylor diagram (Taylor, 2001) test implementation. | |
| http://www-pcmdi.llnl.gov/about/staff/Taylor/CV/Taylor_diagram_primer.htm | |
| """ | |
| __version__ = "Time-stamp: <2012-02-17 20:59:35 ycopin>" |
My objective is to have some production files ignored on specific branches. Git doesn't allow to do it.
My solution is to make a general .gitignore file and add .gitignore.branch_name files for the branches I want to add specific file exclusion.
I'll use post-checkout hook to copy those .gitignore.branch_name in place of .git/info/exclude each time I go to the branch with git checkout branch_name.
| # By Jake VanderPlas | |
| # License: BSD-style | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| def discrete_cmap(N, base_cmap=None): | |
| """Create an N-bin discrete colormap from the specified input map""" |
| git diff -p \ | |
| | grep -E '^(diff|old mode|new mode)' \ | |
| | sed -e 's/^old/NEW/;s/^new/old/;s/^NEW/new/' \ | |
| | git apply |
| #!/usr/bin/env python | |
| # Copyright: This document has been placed in the public domain. | |
| """ | |
| Taylor diagram (Taylor, 2001) implementation. | |
| Note: If you have found these software useful for your research, I would | |
| appreciate an acknowledgment. | |
| """ |