2022-01-14 18:45:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# arguments
|
|
|
|
# 1. root of gonito.net challenge-like filestructure
|
2022-01-31 18:33:10 +01:00
|
|
|
# 2. expected number of train epochs
|
2022-01-14 18:45:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
corpus_path="$1"
|
2022-01-31 18:33:10 +01:00
|
|
|
epochs="$2"
|
2022-01-14 18:45:36 +01:00
|
|
|
|
2022-01-31 18:33:10 +01:00
|
|
|
./scripts/marian-train.sh "$corpus_path" "$epochs"
|