competition update

This commit is contained in:
nckcard
2025-07-02 12:18:09 -07:00
parent 9e17716a4a
commit 77dbcf868f
2615 changed files with 1648116 additions and 125 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/sh
#
# Run this script before attempting test suit on a platform that doesn't
# support compressed file I/O (such as MSVC)
#
# $Header: /home/srilm/CVS/srilm/sbin/go.unzip,v 1.6 2013/03/19 20:11:12 stolcke Exp $
#
if ngram -version | egrep 'Support for compressed|Support for gzipped'
then
: no need for uncompressing data
else
echo "Compressed file i/o not supported; uncompressing data files" >&2
find tests -name \*.gz -print | tee GZ.files | xargs gunzip -f
fi