-
Notifications
You must be signed in to change notification settings - Fork 63
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
Remove phrase 'Abstract' from abstract class names #135
Conversation
examples/reacher_v2/utils.py
Outdated
@@ -7,11 +7,11 @@ | |||
|
|||
import numpy as np | |||
|
|||
from algorithms.common.abstract.her import AbstractHER | |||
from algorithms.common.abstract.reward_fn import AbstractRewardFn | |||
from algorithms.common.abstract.her import HER as AbstractHER |
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 HER's class name is declared as AbstractHER, while RewardFn is not AbstractRewardFn?
|
How about "Remove phrase 'Abstract' from abstract class names"? |
d79c356
to
66a8f4a
Compare
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.
Good job
Issue #131
Author: Chaehyeuk Lee
Error : Class name is same with Abstract Class name
ex) class Agent(Agent)
Fix : Change name of Agent class to include algorithm name
ex) class DQNAgent(Agent)
Change input name 'HER' to 'her'
Test all algorithms and Environments running