Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
enstools-compression
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
w2w
enstools-compression
Commits
7771196f
Commit
7771196f
authored
1 year ago
by
Oriol Tintó
Browse files
Options
Downloads
Patches
Plain Diff
For the analysis, using the time average of any given metric.
parent
d3932093
Loading
Loading
1 merge request
!18
Several changes including chunking and expansion of examples.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
enstools/compression/analyzer/analyzer_utils.py
+18
-6
18 additions, 6 deletions
enstools/compression/analyzer/analyzer_utils.py
with
18 additions
and
6 deletions
enstools/compression/analyzer/analyzer_utils.py
+
18
−
6
View file @
7771196f
...
@@ -6,6 +6,7 @@ import logging
...
@@ -6,6 +6,7 @@ import logging
from
typing
import
List
,
Dict
from
typing
import
List
,
Dict
import
xarray
import
xarray
import
numpy
as
np
from
enstools.compression.analyzer.analysis_options
import
AnalysisOptions
from
enstools.compression.analyzer.analysis_options
import
AnalysisOptions
from
enstools.compression.metrics
import
DataArrayMetrics
from
enstools.compression.metrics
import
DataArrayMetrics
...
@@ -23,7 +24,8 @@ def get_metrics(reference_data: xarray.DataArray, recovered_data: xarray.DataArr
...
@@ -23,7 +24,8 @@ def get_metrics(reference_data: xarray.DataArray, recovered_data: xarray.DataArr
:return: a dictionary with the requested metrics
:return: a dictionary with the requested metrics
"""
"""
metrics
=
DataArrayMetrics
(
reference_data
,
recovered_data
)
metrics
=
DataArrayMetrics
(
reference_data
,
recovered_data
)
return
{
metric
:
float
(
metrics
[
metric
])
for
metric
in
metric_names
if
metric
!=
"
compression_ratio
"
}
# TODO: Is the average the proper thing to use here?
return
{
metric
:
float
(
np
.
average
(
metrics
[
metric
]))
for
metric
in
metric_names
if
metric
!=
"
compression_ratio
"
}
def
check_compression_ratio
(
compression_ratio
:
float
,
thresholds
:
dict
):
def
check_compression_ratio
(
compression_ratio
:
float
,
thresholds
:
dict
):
...
@@ -228,6 +230,7 @@ def discrete_bisection_method(parameters_list: list,
...
@@ -228,6 +230,7 @@ def discrete_bisection_method(parameters_list: list,
retry_repeated
=
5
,
retry_repeated
=
5
,
threshold
=
0.1
,
threshold
=
0.1
,
direct_relation
=
True
,
direct_relation
=
True
,
results
=
None
,
):
):
"""
"""
Apply the bisection method on a set of discrete parameters.
Apply the bisection method on a set of discrete parameters.
...
@@ -248,6 +251,10 @@ def discrete_bisection_method(parameters_list: list,
...
@@ -248,6 +251,10 @@ def discrete_bisection_method(parameters_list: list,
:raises: Exception if the maximum depth is reached.
:raises: Exception if the maximum depth is reached.
"""
"""
if
results
is
None
:
results
=
{}
middle_index
=
len
(
parameters_list
)
//
2
middle_index
=
len
(
parameters_list
)
//
2
middle
=
parameters_list
[
middle_index
]
middle
=
parameters_list
[
middle_index
]
...
@@ -260,13 +267,20 @@ def discrete_bisection_method(parameters_list: list,
...
@@ -260,13 +267,20 @@ def discrete_bisection_method(parameters_list: list,
middle
,
middle
,
float
(
value_at_middle
))
float
(
value_at_middle
))
results
[
middle
]
=
value_at_middle
# If the value at the middle is positive (all thresholds are fulfilled) we can return the parameter at the middle,
# If the value at the middle is positive (all thresholds are fulfilled) we can return the parameter at the middle,
# otherwise select the safer one.
# otherwise select the safer one.
parameter_to_return
=
middle
if
value_at_middle
>
0.0
else
parameters_list
[
-
1
]
parameter_to_return
=
middle
if
value_at_middle
>
0.0
else
parameters_list
[
-
1
]
# In case the accuracy exit condition is reached, return the parameter value at that point
# In case the accuracy exit condition is reached, return the parameter value at that point
if
0.0
<=
value_at_middle
<
threshold
:
if
0.0
<=
value_at_middle
<
threshold
or
depth
>=
max_depth
or
\
return
parameter_to_return
(
value_at_middle
==
last_value
and
retry_repeated
==
0
):
positive_results
=
{
k
:
v
for
k
,
v
in
results
.
items
()
if
v
>
0
}
if
positive_results
:
return
min
(
positive_results
,
key
=
positive_results
.
get
)
else
:
return
middle
# If the value is the same that the last try, we can retry few times
# If the value is the same that the last try, we can retry few times
if
value_at_middle
==
last_value
:
if
value_at_middle
==
last_value
:
...
@@ -274,9 +288,6 @@ def discrete_bisection_method(parameters_list: list,
...
@@ -274,9 +288,6 @@ def discrete_bisection_method(parameters_list: list,
return
parameter_to_return
return
parameter_to_return
retry_repeated
-=
1
retry_repeated
-=
1
# In case having reached the maximum depth, return the proper value
if
depth
>=
max_depth
:
return
parameter_to_return
# # Otherwise, set new parameter range and call the function again
# # Otherwise, set new parameter range and call the function again
if
comparison
(
value_at_middle
,
direct_relation
=
direct_relation
):
if
comparison
(
value_at_middle
,
direct_relation
=
direct_relation
):
...
@@ -293,4 +304,5 @@ def discrete_bisection_method(parameters_list: list,
...
@@ -293,4 +304,5 @@ def discrete_bisection_method(parameters_list: list,
retry_repeated
=
retry_repeated
,
retry_repeated
=
retry_repeated
,
threshold
=
threshold
,
threshold
=
threshold
,
direct_relation
=
direct_relation
,
direct_relation
=
direct_relation
,
results
=
results
,
)
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment