Skip to content

Commit

Permalink
remove torch dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
msaroufim committed Nov 5, 2024
1 parent 3374b33 commit df3d3b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/train_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
steps:
- name: Install dependencies
run: |
pip install numpy torch
pip install numpy
# pip install torch - need to find a way to cache this otherwise it will take a long time to install
- name: Create and run training script
run: |
Expand Down
1 change: 0 additions & 1 deletion ci-requirements.txt

This file was deleted.

1 change: 1 addition & 0 deletions discord-bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import discord
import asyncio
import logging
import zipfile

# Set up logging
logging.basicConfig(
Expand Down

0 comments on commit df3d3b3

Please sign in to comment.