We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c5af64 commit c5169f1Copy full SHA for c5169f1
1 file changed
src/ppo/main.clj
@@ -573,7 +573,9 @@
573
logprob (py. dist log_prob action)]
574
{:action (tolist action) :logprob (tolist logprob)}))))
575
576
-(def actor (Actor 3 64 1))
+;; We create a test multilayer perceptron with three inputs, two hidden layers of 8 units each, and one output.
577
+(def actor (Actor 3 8 1))
578
+
579
;; One can then use the network to:
580
;;
581
;; a. get the parameters of the distribution for a given observation.
0 commit comments