- “IAM and settings”
- “assignment”
- check “GPUs(all regions)” and click “assignment settings”
- input your phone number
- input some information in English
- send request
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.yaml | |
training: | |
tfrecords: | |
- 'imgclassification/dataset/img_dataset_0_[len=600]_train.tfrecord' | |
- 'imgclassification/dataset/img_dataset_1_[len=600]_train.tfrecord' | |
length: | |
- 600 | |
- 600 |
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
java -jar jblas-1.2.4.jar | |
-- org.jblas INFO jblas version is 1.2.4 | |
Simple benchmark for jblas | |
Running sanity benchmarks. | |
checking vector addition... ok | |
-- org.jblas CONFIG BLAS native library not found in path. Copying native library from the archive. Consider installing the library somewhere in the path (for Windows: PATH, for Linux: LD_LIBRARY_PATH). | |
-- org.jblas CONFIG ArchFlavor native library not found in path. Copying native library libjblas_arch_flavor from the archive. Consider installing the library somewhere in the path (for Windows: PATH, for Linux: LD_LIBRARY_PATH). | |
-- org.jblas CONFIG Loading libjblas_arch_flavor.so from /lib/static/Linux/amd64/, copying to libjblas_arch_flavor.so. | |
-- org.jblas ERROR Couldn't load copied link file: java.lang.UnsatisfiedLinkError: /tmp/jblas5239787082843388211/libjblas_arch_flavor.so: libgfortran.so.3: cannot open shared object file: No such file or directory. |
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
#ls /sys/firmware/efi/efivars ;; 中身があることを確認 | |
#parted /dev/sda | |
() mklabel gpt | |
() mkpart ESP fat32 1MiB 513MiB | |
() set 1 boot on | |
() mkpart primary ext4 513MiB 100% | |
() quit | |
# lsblk /dev/sda ;; sda1 と sda2を確認 | |
# mkfs.vfat -F32 /dev/sda1 | |
# mkfs.ext4 /dev/sda2 |