This commit is contained in:
allegroai 2024-07-31 17:24:05 +03:00
parent a7b5890028
commit d8ca5c73c4
4 changed files with 7 additions and 8 deletions

View File

@ -94,7 +94,7 @@ class Task(IdObjectBase, AccessMixin, SetupUploadMixin):
return str(self) == str(other)
def __repr__(self):
return f"TaskTypes.{self.value}"
return "TaskTypes.{}".format(self.value)
training = 'training'
testing = 'testing'
@ -116,7 +116,7 @@ class Task(IdObjectBase, AccessMixin, SetupUploadMixin):
return str(self) == str(other)
def __repr__(self):
return f"TaskTypes.{self.value}"
return "TaskTypes.{}".format(self.value)
created = "created"
queued = "queued"

View File

@ -1,12 +1,10 @@
from typing import Optional
from logging import getLogger
from ..task import Task
_logger = getLogger("clearml.external.kerastuner")
from ..task import Task
try:
import pandas as pd
except ImportError:

View File

@ -3,6 +3,7 @@ clearml>=1.14.4
matplotlib >= 3.1.1 ; python_version >= '3.6'
matplotlib >= 2.2.4 ; python_version < '3.6'
numpy != 1.24.0 # https://github.com/numpy/numpy/issues/22826
bokeh_sampledata==2024.2 ; python_version >= '3.10'
pandas
pillow>=4.0
plotly