Ritchie Lee
Ritchie Lee
Hello, Does the usage example in the readme still work? It seems that the Environment function signature doesn't exist? ```julia julia> function foo(n) x=n+1 ((BigInt[1 1; 1 0])^x)[2,1] end foo...
I'm finding the MNIST example on the MNIST branch very insightful. In the example, the structure of model is hardcoded. What is the best way, in the ReverseDiff framework, to...
I'm running ./run_dsprites_B_gamma100_z10.sh with a reduced number of iterations. Error is below: ```python => no checkpoint found at 'checkpoints/dsprites_B_gamma100_z10/last' 67%|██████████████████████████████████████████████████ | 10000/15000.0 [34:22
```julia using MATLAB s1 = MSession() s2 = MSession() put_variable(s1, :y, 1) put_variable(s2, :y, 2) jvalue(get_mvariable(s1, :y) #output1 jvalue(get_mvariable(s2, :y) #output2 ``` I'm expecting output1=1 and output2=2. Works on mac....
I would like to speed up RobotOS startup time by compiling using PackageCompiler. I am able to create a sysimage by passing in :RobotOS as a package to be compiled....
I am using the API to create input, i.e., nec_create(), nec_wire(), nec_fr_card(), etc., is there a way to output the context/configuration to file as a traditional nec2 card deck? I...
Hello, I am trying to get semantic-highlight to work with julia-vim. See screenshot:  julia-vim parses code blocks, i.e., code inside () or [] or inside a...
What's the best way to get the best path seen over the entire search in DPW? This is the sequence of ``s,a,r``'s with the best total reward encountered over all...
Are there any visualizations for these models?
What is the difference between these two RL interfaces? Should this one be used for new projects?