Andriy Drozdyuk

Results 59 issues of Andriy Drozdyuk

Does this work with python 3.7 and ubuntu 19+? Thanks.

Is there an integration with wandb? It's really nice to see all results in one place. E.g. https://docs.wandb.com/library/integrations/ray-tune Thanks!

I've been using rllib for a while and quite like the [Trainable](https://ray.readthedocs.io/en/latest/tune-advanced-tutorial.html#a-native-example-of-trainable) and Tune (hyperaram search) abstractions. Does coach contain something similar? I really like coach's documentation. Can someone provide...

I found some observations fall outside the specified limits. Here is a script to test this: ``` from osim.env import L2M2019Env def main(): env = L2M2019Env(visualize=False) print("ENV reports observation space...

If I do something like this: `d(".foo").attr("action")` Even if I have multiple elements with class foo, I will only get a single value for this selector.

When attempting to open the file with h5py I get this error: `TypeError: No NumPy equivalent for TypeBitfieldID exists`

Is there an equivalent of a `sender` attribute on the actor? This is to allow me to send messages to the "sender" --- and is drastically different from the "ask"...

enhancement

Is it possible to provide support for "become" functionality in akka? See: http://doc.akka.io/docs/akka/snapshot/scala/actors.html#become-unbecome Seems like python should be particularly well-suited to such "hot-swapping". Thanks!

enhancement

Is there an equivalent of dead letters in pykka? I.e. ability to see all the message (at least in a log) that were not delivered anywhere? Currently, I implement this...

enhancement
docs

Currently, the only way to know that the "child" actor failed, is to employ the 'ask' pattern: ``` python actor = MyActor.start() try: actor.ask({'command':'hey'}) except Exception: # actor failed! ```...

enhancement