Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

  1. wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh

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

  3. ลงมาล่างสุด พิมพ์ yes และ กด Enter

  4. กด Enter (โปรแกรมจะถูกติดตั้งที่ Path home หรือจะเลือกติดตั้ง path อื่นที่เรามีสิทธิ์เข้าถึง)

  5. พิมพ์ yes และ กด Enter เพื่อรัน Conda

  6. conda config --set auto_activate_base false #ตั้งค่าเริ่มต้นให้เข้า shell ปกติ

  7. exit #ออกจาก terminal

  8. เข้า ssh tara.nstda.or.th ใหม่

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

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

  11. pip install tensorflow==2.4.3 #ติดตั้ง tensorflow version 2.4.3 ถ้าไม่ระบุจะเป็น version ล่าสุด

  12. pip install numpy #ติดตั้ง numby package

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

  14. python -V #ตรวจสอบ python version

  15. 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 myenv
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

  • No labels