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
awk '{print substr($0,1,10)}' bam.list |
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
###test if Using GPU for ML | |
#These commands in the Python terminal should bring up both a CPU and a GPU device, if TensorFlow correctly identifies your GPU. | |
import tensorflow as tf | |
tf.__version__ | |
import keras | |
keras.__version__ | |
from tensorflow.python.client import device_lib | |
print(device_lib.list_local_devices()) |
OlderNewer