摘要:
Compress an Entire Directory or a Single File Use the following command to compress an entire directory or a single file on Linux. It’ll also compress 阅读全文
摘要:
Python's conditional expression is a if C else b and can't be used as: [a for i in items if C else b] The right form is: [a if C else b for i in items 阅读全文
摘要:
Post Hyperparameter optimization for Neural Networks Paper Algorithms for Hyper-Parameter Optimization Note Introduction Sometimes it can be difficult 阅读全文
摘要:
Hyperparameter Optimization In the context of machine learning, hyperparameter optimization or model selection is the problem of choosing a set of hyp 阅读全文
摘要:
In Python 3, they made the / operator do a floating-point division, and added the // operator to do integer division (i.e. quotient without remainder) 阅读全文
摘要:
Executive Summary Delete Local Branch To delete the local branch use: Note: The -d option is an alias for --delete, which only deletes the branch if i 阅读全文
摘要:
If you have named a branch incorrectly AND pushed this to the remote repository follow these steps before any other developers get a chance to jump on 阅读全文
摘要:
Installing TCMalloc for use in experiments. This should slightly speed up runs. First part of this is for TCMalloc use when using tensorflow and the s 阅读全文
摘要:
calcOpticalFlowFarneback Computes a dense optical flow using the Gunnar Farneback’s algorithm. prev – first 8-bit single-channel input image. next – s 阅读全文