Compare commits

..

No commits in common. "24d111b1a4467057cd1c9bb009ab54e56fdeed82" and "30ebb519a1c6f7dc5fbe61f50c2ac7981ab1de06" have entirely different histories.

2 changed files with 193 additions and 4467 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,16 +0,0 @@
#!/usr/bin/env bash
if [ -d "/content" ]; then
echo "This appears to be a Google Colab environment."
echo "Installing dependencies"
pip install -r "https://raw.githubusercontent.com/norandom/project_bookworm/main/requirements.gpu.txt"
echo "Downloading data directly (workaround)"
cd "/content"
wget "https://github.com/norandom/project_bookworm/raw/main/data/export.documents.txt"
wget "https://github.com/norandom/project_bookworm/raw/main/data/export.txt"
else
echo "This does not appear to be a Google Colab environment."
fi