send_action's pipe_io.writeline error
See original GitHub issueHi! I’m interested on replicating your paper results but I’m hitting a problem when sending action values to the pipeline. Below are some information about my efforts:
- OS: Ubuntu 18.04.02 (on VirtualBox, host is Windows 10)
- Version: EnergyPlus v8.8.0
- Patch: Followed the patch instructions using 8.8.0 patch version and it seems to be working well (except for this problem)
- Command:
poetry run time python3 -m baselines_energyplus.trpo_mpi.run_energyplus --num-timesteps 10000000
Please see the traceback message below.
From the traceback, it seems that line 213 from energyplus_env.py formats the action into a string. However, the action value contains a list, hence the error. Is this really the expected behavior or did I miss a step?
I hope for your help as I’m really eager to test your testbed out! Thank you.
Issue Analytics
- State:
- Created 3 years ago
- Comments:7
Top Results From Across the Web
sendActions(for:) - Documentation - Apple Developer
This method iterates over the control's registered targets and action methods and calls the sendAction(_:to:for:)
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@AlejandroCN7 this will be solved with #54. @takaomoriyama let me know if there’s anything else to update in it.
I have had the same problem in version 9.3.0, adding
action = action[0]
as @antoine-galataud comments solves the problem (in if action is not None block)