Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
  1. wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

  2. bash Miniconda3-latest-Linux-x86_64.sh -b

  3. $HOME/miniconda3/bin/conda init

  4. exit

  5. เข้า ssh [tara.nstda.or.th|http://tara.nstda.or.th]ใหม่ ใหม่

  6. conda create --name myenv ถ้าไม่ระบุ python version จะเป็นตัวล่าสุด ถ้าต้องการ version อื่นสามารถระบ version ตามหลังได้ conda create -n myenv python=3.7

  7. conda activate myenv #เป็นการเข้าใช้งานสภาพแวดล้อมใหม่

  8. pip list #ตรวจสอบ package ที่มี

  9. pip install tensorflow==2.4.3 #ติดตั้ง tensorflow version 2.4.3

  10. conda deactivate #เป็นการออกจากสภาพแวดล้อม myenv

ตัวอย่างการใช้งาน sbatch submit.sh

#!/bin/bash
#SBATCH -p gpu # specific partition (compute, memory, gpu)
#SBATCH -N 1 --ntasks-per-node=40 # specific number of nodes and task per node
#SBATCH -t 1:00:00 # job time limit
#SBATCH -J testtest # job name
#SBATCH -A thaisc # Specify Project account which will be received after Register ** If you do not specify in this section, the job will not be able to run.

module purge # purge all module
source $HOME/miniconda3/bin/activate mypython37
module load cuDNN

python model_main_tf2.py --model_dir=models/my_ssd_resnet152_v1_fpn --pipeline_config_path=models/my_ssd_resnet152_v1_fpn/pipeline.config