This file contains 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
# ~/.config/systemd/user/arxiv_bot.service | |
[Unit] | |
Description=Slack Arxiv Bot | |
[Service] | |
ExecStart=VENV_PATH RUN_PY_PATH | |
WorkingDirectory=DIR_PATH | |
Restart=always |
This file contains 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
requests | |
beautifulsoup4 |
This file contains 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 matplotlib.pyplot as plt | |
import numpy as np | |
fig = plt.figure(figsize=(5, 5)) | |
ax = fig.add_subplot(projection='3d') | |
k = 500 | |
z = np.arange(0, k) | |
ax.scatter( |
This file contains 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
from collections import defaultdict | |
import pkgutil | |
import os | |
import matplotlib as mpl | |
import matplotlib.pyplot as plt | |
from cycler import cycler | |
mpl.rcParams["axes.prop_cycle"] = cycler(color=["#648fff", "#785ef0", "#dc267f", "#fe6100", "#FFB000", "#648fff", "#dc267f", "#000000"]) | |
def _size_count(fname): |
This file contains 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
tensorboard_slurm() { | |
local port="$1" | |
local exp_path="$2" | |
local session_tag="tensorboard_$(date +%s)" | |
if [[ -z "$port" || -z "$exp_path" ]]; then | |
echo "Usage: tensorboard_slurm <port> <path_to_experiment>" | |
return 1 | |
fi |
OlderNewer