Tensorflow: v0.11.0rc2 OS: CENTOS 6.8 (No root access)
- The
tensorboardSLURM.sh
can be run with the following command to start a tensorboard server on a SLURM cluster:
sbatch --array=0-0 tensorboardSLURM.sh
#!/bin/bash | |
OUTDIR="./first_pass_notes" | |
OUTFILE="$OUTDIR/first-passes.pdf" | |
# Create the directory (ignore if already exitsing): | |
mkdir -p $OUTDIR | |
# Iterate through the PDF files and print the last page to our document | |
find . -maxdepth 1 -name "*.pdf" | while read fname ; do | |
echo "Working: $fname"; |
# BETA!!! NOTE I AM STILL WORKING TO VERIFY INSTALL WITH A STUDENT: | |
| |
#PRE: Install WSL | |
| |
# Windows Key, type power shell, right click and run as administrator | |
| |
# Run: | |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux | |
| |
# Restart if prompted! |