Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SkazuHD
/
docker-test
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
21e0774
docker-test
/
pipelines
/
evaluating.py
SkazuHD
init space
d660b02
5 months ago
raw
Copy download link
history
blame
283 Bytes
from
clearml
import
PipelineDecorator
from
steps
import
evaluating
as
evaluating_steps
@PipelineDecorator.pipeline(
name=
"evaluating"
, project=
"CS370"
)
def
evaluating
(
is_dummy:
bool
=
False
,
) ->
None
:
evaluating_steps.evaluate(
is_dummy=is_dummy,
)