We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 102fb40 commit f3a04b0Copy full SHA for f3a04b0
Dockerfile.tmpl
@@ -524,6 +524,7 @@ RUN pip install flashtext && \
524
pip install onnx && \
525
pip install tables && \
526
pip install openpyxl && \
527
+ pip install timm && \
528
/tmp/clean-layer.sh
529
530
# Download base easyocr models.
tests/test_timm.py
@@ -0,0 +1,9 @@
1
+import unittest
2
+
3
+import timm
4
5
6
+class TestTimm(unittest.TestCase):
7
+ def test_list_models(self):
8
+ models = timm.list_models()
9
+ self.assertGreater(len(models), 0)
0 commit comments