run.sh 224 字节
Newer Older
Y
Yibing Liu 已提交
1 2 3 4 5 6 7 8
#!/bin/bash
export CUDA_VISIBLE_DEVICES=0

function run_train() {
    echo "training"
    python train.py \
        --data_path data/simple-examples/data/ \
        --model_type small \
L
Li Fuchen 已提交
9
        --use_gpu True \
Y
Yibing Liu 已提交
10 11
}

H
Hongyu Liu 已提交
12
run_train