Skip to content

Commit

Permalink
Add torchtune to docker image packages (#1456)
Browse files Browse the repository at this point in the history
  • Loading branch information
psbang authored Dec 16, 2024
1 parent 18a67b0 commit 2cb0a25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions kaggle_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ tensorflow_decision_forests
timm
torchinfo
torchmetrics
torchtune
tsfresh
vtk
wandb
Expand Down
9 changes: 9 additions & 0 deletions tests/test_torchtune.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import unittest

import subprocess

class TestTorchtune(unittest.TestCase):
def test_help(self):
ret_code = subprocess.run(["tune", "--help"])
self.assertEqual(0, ret_code.returncode)
self.assertIsNone(ret_code.stderr)

0 comments on commit 2cb0a25

Please sign in to comment.