Compare commits

...

4 Commits

Author SHA1 Message Date
Marius Ciepluch 24d111b1a4 Created using Colaboratory 2024-04-04 19:16:29 +02:00
Marius Ciepluch c7ffd0dcaf Created using Colaboratory 2024-04-04 18:45:04 +02:00
Marius Ciepluch eef5b798b4 Created using Colaboratory 2024-04-04 17:53:57 +02:00
Marius Ciepluch 564ed54344 prep script for goog colab env 2024-04-04 15:47:41 +00:00
2 changed files with 4466 additions and 192 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,16 @@
#!/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