-
Notifications
You must be signed in to change notification settings - Fork 4
Classification environment (Iris dataset) #16
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
base: develop
Are you sure you want to change the base?
Conversation
| ): | ||
| self._network_settings = network_settings | ||
|
|
||
| self._observation_size = observation_size |
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.
Why is this needed?
|
|
||
| class ClassificationEnvironment(Environment): | ||
| """ | ||
|
|
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.
Fill this in
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.
We should not need a separate script for classification. Why can't this be run through the existing main script?
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.
New environment needs to be added to the docs
| dataloader_train = DataLoader(self._dataset_train, batch_size=1, shuffle=True) | ||
| dataloader_test = DataLoader(self._dataset_test , batch_size=1, shuffle=False) | ||
| return dataloader_train, dataloader_test | ||
|
|
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.
Should raise for not implemented here
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.
Not sure this is necessary to include, would favor removing it
Co-authored-by: Jordan Ott <jordanott365@gmail.com>
Sample output: