Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Fix download parallel data for 'en-sw #297

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions get-data-para.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ if [ $pair == "en-sw" ]; then
echo "Download parallel data for English-Swahili"
# Tanzil
wget -c http://opus.nlpl.eu/download.php?f=Tanzil%2Fen-sw.txt.zip -P $PARA_PATH
unzip -u download.php?f=Tanzil%2Fen-sw.txt.zip -d $PARA_PATH
unzip -u $PARA_PATH/download.php?f=Tanzil%2Fen-sw.txt.zip -d $PARA_PATH
# GlobalVoices
wget -c http://opus.nlpl.eu/download.php?f=GlobalVoices%2Fen-sw.txt.zip -P $PARA_PATH
unzip -u download.php?f=GlobalVoices%2Fen-sw.txt.zip -d $PARA_PATH
unzip -u $PARA_PATH/download.php?f=GlobalVoices%2Fen-sw.txt.zip -d $PARA_PATH
fi

# en-th
Expand Down