-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solving several bugs in Sinergym (#174)
* Changed name .vscode to .vscode_conf in order to not to affect current local workspace vscode IDE (developer user) * Solved bug #168 * Trying to solve issue #171 * Solved #173 * Fixed bug about duplicated progress.csv logs when DRL_battery.py script is used * Added env.close() when DRL algorithm learning process doesn't close env automatically in DRL_battery.py (Added log message when simulation is closed in simulator Backend to detect this problem in the future easily). * DRL_battery.py: The total number of timesteps is equal to the number of episodes multiplied by their size MINUS 1 in order to avoid a last reset and add an empty episode. * Re-structure for evaluation callback (Separation between evaluation callback and evaluation policy in Sinergym code) * Deleted reset in EvalCallback in order to avoid empty episodes * Migrating evaluation policy from callbacks * Separated env environment from train environment+ * Fixed tests in order to new changes * Added MANIFEST.in sinergym/data files
- Loading branch information
1 parent
9f3fd87
commit 9e6ea93
Showing
12 changed files
with
226 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,9 @@ __pycache__/ | |
.ipynb_checkpoints | ||
*.egg-info | ||
|
||
#vscode conf | ||
.vscode | ||
|
||
# Other softwares | ||
EnergyPlus*/ | ||
bcvtb/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include requirements.txt | ||
include sinergym/version.txt | ||
include sinergym/version.txt | ||
recursive-include sinergym/data * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.