This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env bash | |
| set -e -o pipefail | |
| # NOTE Use notify send, pushbullet or other stuff ? | |
| # NOTE NFS, ssh, ... | |
| # TODO Encryption | |
| source optparse.bash | |
| optparse.define short=t long=tag desc="Archive tag" variable=tag default="home" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import random | |
| import math | |
| import numpy as np | |
| import logbook | |
| log = logbook.Logger('Optimization') | |
| from neuronquant.network.transport import ZMQ_Dealer |
NewerOlder