start new:
tmux
start new with session name:
tmux new -s myname
| #!/usr/bin/env python3 | |
| """ | |
| Example of a generic Mixout implementation. (Lee et al., 2019). | |
| https://arxiv.org/abs/1909.11299 | |
| Implementation by Stephen Roller (https://stephenroller.com). | |
| Updated 2020-02-10 to include 1/(1 - p) correction term. Thanks to | |
| Cheolhyoung Lee for making this correction. |