Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Cooperative Cuisine Environment
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
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
Social Cognitive Systems
CoCoSy
Cooperative Cuisine Environment
Commits
937e04bb
Commit
937e04bb
authored
1 year ago
by
Fabian Heinrich
Browse files
Options
Downloads
Patches
Plain Diff
Docstrings
parent
d8c59b07
No related branches found
No related tags found
1 merge request
!94
Resolve "Score of order depends on remaining time"
Pipeline
#49894
passed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cooperative_cuisine/scores.py
+30
-0
30 additions, 0 deletions
cooperative_cuisine/scores.py
with
30 additions
and
0 deletions
cooperative_cuisine/scores.py
+
30
−
0
View file @
937e04bb
...
...
@@ -91,6 +91,12 @@ from cooperative_cuisine.hooks import HookCallbackClass
def
constant_score
(
max_score
:
float
,
time_percentage
:
float
=
1.0
):
"""
Returns the constant score. No time dependence.
Args:
max_score: The maximum score to be returned.
time_percentage: The time percentage. Default is 1.0.
"""
return
max_score
...
...
@@ -100,6 +106,17 @@ def linear_score(
time_percentage
:
float
=
1.0
,
round_decimals
:
int
=
0
,
):
"""
Returns the linear score based on the time percentage.
Args:
max_score: Maximum possible score.
min_score_ratio: Minimum score ratio. Default is 0.0.
time_percentage: Time percentage of the order. Default is 1.0.
round_decimals: Number of decimals to round the score to. Default is 0.
Returns: Modified score based on the time percentage.
"""
modified_score
=
float
(
np
.
round
(
max
(
max_score
*
time_percentage
,
max_score
*
min_score_ratio
),
...
...
@@ -116,6 +133,19 @@ def stepped_score(
round_decimals
:
int
=
0
,
time_percentage
:
float
=
1.0
,
):
"""
Modifies the score based on a step function based on the time percentage.
Args:
max_score: Maximum possible score.
steps: Steps for the score ratios.
score_ratios: Ratios for the score based on the steps.
round_decimals: Number of decimals to round the score to. Default is 0.
time_percentage: Time percentage of the order. Default is 1.0.
Returns: Modified score based on the time percentage.
"""
if
len
(
steps
)
!=
len
(
score_ratios
):
raise
ValueError
(
"
steps and vals must have the same length
"
)
...
...
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