navigating-stories / orange-story-navigator

Add-on to the Orange3 data mining toolkit with text processing widgets from the project Navigating Stories
https://research-software-directory.org/projects/navigating-stories
Other
2 stars 2 forks source link

Tests are failing #61

Closed stefsmeets closed 3 months ago

stefsmeets commented 4 months ago

All CI tests are failing with: ERROR: Could not install packages due to an OSError: [Errno 28] No space left on device

I think this is because of some very large dependencies. Pytorch alone is 800 mb and depends on cuda which is another 1.5 GB at least. The CI does not have a gpu, so we can switch to the cpu version to make it more efficient. The whole venv comes in at about 7 GB.

stefsmeets commented 4 months ago

Until this gets fixed I turned off the relevant action: https://github.com/navigating-stories/orange-story-navigator/actions

stefsmeets commented 4 months ago

The CI could use the cpu version of torch:

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu

https://pytorch.org/get-started/locally/