-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple quality of life improvements #20
base: master
Are you sure you want to change the base?
Conversation
This reverts commit 39aa6c8.
I added an Evaluation to work with Gymnasium |
@@ -10,7 +10,7 @@ class Evaluation(ABC): | |||
Produces a binary pass/fail result, a float score, and a text report | |||
""" | |||
|
|||
def __init__(self, SUT: Program, passing_score: float = 1.): | |||
def __init__(self, SUT, passing_score: float = 1.): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't SUT of type Program?
SUT is an abbreviation and it's nice to have some explanation and typing hints
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor: please, add some notes on SUT and typing.
Otherwise, I'm approving code for RL Gymnasium environment. Note that we do not use Gymnasium in the original SEIDR paper.
When I see a stacktrace in my logs I think that something went wrong and try to debug it. In this case, this is an expected scenario