File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,9 @@ def __registered_operators():
1414 return [
1515 f
1616 for f in os .listdir (target_dir )
17- if os .path .isdir (os .path .join (target_dir , f )) and not f .startswith ("__" )
17+ if os .path .isdir (os .path .join (target_dir , f ))
18+ and not f .startswith ("__" )
19+ and f != "common"
1820 ]
1921
2022
Original file line number Diff line number Diff line change 11type: anomaly
22version: v1
3- conda_type: published
3+ conda_type: service
44name: Anomaly Detection Operator
55gpu: no
66keywords:
77 - Anomaly Detection
88backends:
9- - job, local
9+ - job
1010description: |
1111 Anomaly Detection is the identification of rare items, events, or observations in data that
1212 differ significantly from the expectation. This can be used for several scenarios like asset
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ def test_artificial_big(model):
104104 assert os .path .exists (f"{ output_dirname } /report.html" ), "Report not generated."
105105
106106
107- @pytest .mark .parametrize ("model" , MODELS + ["auto" ])
107+ @pytest .mark .parametrize ("model" , MODELS ) # + ["auto"]
108108def test_artificial_small (model ):
109109 # artificial data
110110 d1 = np .random .multivariate_normal (
@@ -131,7 +131,7 @@ def test_artificial_small(model):
131131 yaml_i ["spec" ]["output_directory" ]["url" ] = output_dirname
132132 yaml_i ["spec" ]["contamination" ] = 0.3
133133
134- # run(yaml_i, backend="operator.local", debug=False)
134+ # run(yaml_i, debug=False)
135135
136136 with open (anomaly_yaml_filename , "w" ) as f :
137137 f .write (yaml .dump (yaml_i ))
You can’t perform that action at this time.
0 commit comments