学習時間を短くする処理の追加#13
Open
yasuohayashibara wants to merge 3 commits intomasterfrom
Open
Conversation
yasuohayashibara
commented
Jun 7, 2022
|
|
||
| <node pkg="timed_roslaunch" type="timed_roslaunch.sh" | ||
| args="8 nav_cloning turtlebot3_navigation.launch model:=waffle map_file:=$(find nav_cloning)/maps/$(arg map_file) waypoints_file:=$(find nav_cloning)/maps/$(arg waypoints_file) dist_err:=$(arg dist_err) initial_pose_x:=$(arg initial_pose_x) initial_pose_y:=$(arg initial_pose_y) initial_pose_a:=$(arg initial_pose_a) use_waypoint_nav:=$(arg use_waypoint_nav)" | ||
| args="8 nav_cloning turtlebot3_navigation.launch model:=waffle_pi map_file:=$(find nav_cloning)/maps/$(arg map_file) waypoints_file:=$(find nav_cloning)/maps/$(arg waypoints_file) dist_err:=$(arg dist_err) initial_pose_x:=$(arg initial_pose_x) initial_pose_y:=$(arg initial_pose_y) initial_pose_a:=$(arg initial_pose_a) use_waypoint_nav:=$(arg use_waypoint_nav)" |
Member
Author
There was a problem hiding this comment.
モデルがwaffleになっていたので,従来どおりwaffle_piに変更
yasuohayashibara
commented
Jun 7, 2022
| # HYPER PARAM | ||
| BATCH_SIZE = 8 | ||
| MAX_DATA = 10000 | ||
| MAX_DATA = 100000 |
Member
Author
There was a problem hiding this comment.
訓練のために保存するデータ数を増やす
Member
Author
|
あと,学習時などにワーニングが出ていましたが,以下を調整することで出なくなりました. |
Member
Author
|
あと,今となればそれほど重要な変更ではないかもしれませんが,目標方向の切り替え時にコースアウトすることが多かったので,次の目標位置に切り替わるまでのタイムラグを減らす処理を以下に入れています. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
学習時間を短くする処理の追加