-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add initial building blocks for reinforcement learning
Add initial building blocks for reinformcement learning workflow
- Loading branch information
1 parent
847aaa9
commit 44ea6b0
Showing
7 changed files
with
569 additions
and
7 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"input_features": [ | ||
{ | ||
"name": "ActionImage", | ||
"type": "image", | ||
"preprocessing": { | ||
"height": 150, | ||
"width": 150, | ||
"resize_method": "interpolate", | ||
"scaling": "pixel_normalization" | ||
} | ||
}, | ||
{ | ||
"name": "ActionText", | ||
"type": "text" | ||
}, | ||
{ | ||
"name": "DistanceFromCenter", | ||
"type": "numerical" | ||
}, | ||
{ | ||
"name": "DistanceFromTopLeftCorner", | ||
"type": "numerical" | ||
}, | ||
{ | ||
"name": "PreviousSteps", | ||
"type": "text" | ||
}, | ||
{ | ||
"name": "ActionImageMainColorR", | ||
"type": "numerical" | ||
}, | ||
{ | ||
"name": "ActionImageMainColorG", | ||
"type": "numerical" | ||
}, | ||
{ | ||
"name": "ActionImageMainColorB", | ||
"type": "numerical" | ||
} | ||
], | ||
"output_features": [ | ||
{ | ||
"name": "Reward", | ||
"type": "numerical" | ||
} | ||
] | ||
} |
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