We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c4647c commit 1a9f53dCopy full SHA for 1a9f53d
blob
index.js
@@ -130,6 +130,9 @@ async function main(){
130
const min_action = parameters.dynamics.action_limit.min
131
const max_action = parameters.dynamics.action_limit.max
132
return get_state()["rpm"].map(x => (x - min_action) / (max_action - min_action) * 2 - 1)
133
+ default:
134
+ console.error("Unknown observation: ", obs)
135
+ return null
136
}
137
138
const observation_description = document.getElementById("observations").observation
0 commit comments