restructurized directory

This commit is contained in:
Kuba 2023-03-21 22:26:46 +01:00
parent 4f5a13fb50
commit 375fa28dd5

17
corpus/wiki.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
# Download the latest Wikipedia dump file
wget https://dumps.wikimedia.org/enwiki/latest/enwiki-latest-pages-articles.xml.bz2
# Extract the text from the dump file using native Bash commands
bzcat enwiki-latest-pages-articles.xml.bz2 | \
sed -n '/<text/,/<\/text>/p' | \
sed -e 's/<[^>]*>//g' | \
sed '/^{{/d; /^$/d; /\t{{/d; s/|/ /g; s/=/ /g; /&.*;/d' | \
sed '/^\s*$/d; /^$/d' | \
sed 's/^[[:space:]]*//' | \
tr -d "'[]{}" > \
enwiki-latest-corpus.txt
# Clean up
rm enwiki-latest-pages-articles.xml.bz2