Zeyi Wang

Results 40 comments of Zeyi Wang

@hbq1 I actually don't know how to do it in chex. I am doing stupid prints to debug this...

This patch seems to work, do you want me to PR as a method? ```python import trio import pickle def __reduce__(self): return (self.__class__, tuple()) trio._deprecate._ModuleWithDeprecations.__reduce__ = __reduce__ pickle.dumps(trio._deprecate._ModuleWithDeprecations("hello")) ```

For example, ```python import ray import trio ray.init() @ray.remote def task(): async def sleeper(): await trio.sleep(1) trio.run(sleeper) task.remote() ``` This gives: ```bash /root/.local/share/virtualenvs/moozi-g1CZ00E9/lib/python3.8/site-packages/trio/_core/_multierror.py:511: RuntimeWarning: You seem to already have a...

Interested in doing this. I'm a github noobie so let me layout the exact process of doing this in case I get something wrong ... - fork the repo -...

I am so sorry this completely slipped my mind 😭 @cjstehno Please forgive my incompetence and proceed to do that.

@roubkar I archived a lot of runs but they are useless now. Is there anyway of me deleting them permanently? Also, I will give you a bit more stats later...

USE CASE: I am designing a game and using frontend technology for rapid prototyping (similar to Zelda creating a 2D version for testing before implementing a full-fledged 3D version). An...

> Do you know about muzero-general? They also recently added support for OpenSpiel games: werner-duvaud/muzero-general@23a1f69. Yes, and my project is heavily inspired by that. My project will be different in...

> FYI, a [GSoC](https://summerofcode.withgoogle.com/projects/#4538531164192768) student will also work on MuZero in Julia and use the OpenSpiel wrapper this summer. Thanks for the information! Do you know this person's contact information?...

> I am also interested in implementing MCTS and a semi-grad TD algorithm, to learn the material better. But figuring out the batching is a problem for me. Is there...