We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d4bae commit 0b2fdc2Copy full SHA for 0b2fdc2
1 file changed
.github/workflows/UnitTests.yml
@@ -40,6 +40,10 @@ jobs:
40
- name: Install Dependencies
41
run: |
42
pip install -r requirements.txt
43
+ # Uninstall the full tensorflow package to prevent GPU conflicts
44
+ pip uninstall -y tensorflow
45
+ # Install the CPU-only version of tensorflow
46
+ pip install tensorflow-cpu
47
pip install --upgrade torch torchvision
48
# Install the maxdiffusion package to make it available for execution
49
pip install .
0 commit comments