Christopher Agia

Results 7 comments of Christopher Agia

Thanks for the quick response! The case I'm considering is in-fact a bit more contrived than the above. The model is a deep Q-network; code here: https://github.com/jhejna/research-lightning/blob/rl/research/networks/mlp.py#L29. While the actual...

Thanks for deducing this. Fortunately it isn't my primary use-case but would help for completion in the future!

I managed to fix this error @ivanvoid by modifying the gym version: 1. pip uninstall gym 2. pip install gym==0.23.1

Yes, this is on the TODO for next week.

Aside from overlapping signatures of functions exported by the Proxy-Wasm module, there are also a series of host functions that need to be implemented in hostcalls.rs (even if left currently...

I think this should be optional. Currently, the user has the option to mock parameters and returns from vm->host and vm

should params include the names and also the assigned values? e.g. [host->vm] proxy_on_vm_start(root_context_id=1, parent_context_id=0) or something like: [host->vm] proxy_on_vm_start(root_context_id, parent_context_id)