11 lines
197 B
Bash
Executable File
11 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# arguments
|
|
# 1. root of gonito.net challenge-like filestructure
|
|
# 2. expected number of train epochs
|
|
|
|
|
|
corpus_path="$1"
|
|
epochs="$2"
|
|
|
|
./scripts/marian-train.sh "$corpus_path" "$epochs" |