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
Delete the saved session by clicking on the 'Delete' button in PuTTY configuration | |
Re-enter the hostname/IP address in both 'Host Name (or IP address)' field and 'Saved Session' field. | |
Save the session by clicking 'Save' Button | |
Double-click on the newly saved session |
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
du -H --max-depth=1 ./ | sort -n -r |
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
''' | |
Link image data to ground truth | |
''' | |
from __future__ import print_function | |
import glob , os | |
import pandas as pd | |
import numpy as np | |
# User input |
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
''' | |
Link image data to ground truth | |
''' | |
from __future__ import print_function | |
import glob , os | |
import pandas as pd | |
import numpy as np | |
# User input |
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
ml use /pstore/apps/.testing/modules/all | |
ml python/python3.6-2018.05 | |
ml virtualenv | |
ml CUDA cuDNN | |
ml TensorFlow/1.12.0-foss-2018b-CUDA-10.0.130-Python-3.6.5-2018.05 | |
source /pstore/data/pio/ShellTools/VENVS/GPU/venv-3.6-gpu/bin/activate |
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
sacct --format="JobID,JobName%30" |
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
string="/pstore/data/pio/Trials/Ride-Rise/RISE/IMG/S16720/72004/CF/" | |
echo ${string//\//\\} | |
\pstore\data\pio\Trials\Ride-Rise\RISE\IMG\S16720\72004\CF |
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
sed -i $'s/\t/ /g' script_filename.py |
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
Find unique values within a specified column of a CSV with semicolor delimiter: csvcut -c SCATPC -d ";" /pstore/data/pio/Tasks/PIO-382/original_tables/table_scatpc.csv | sed 1d | sort | uniq |
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
merged = df1.merge(df2, indicator=True, how='outer') | |
merged[merged['_merge'] == 'left_only'] |
NewerOlder