Oleksii Kachaiev

Results 50 issues of Oleksii Kachaiev

Fixed typo for notebook in `functional_regularisation_for_continual_learning`

cla: yes

Special `@composable` decorator to bring new functionality to function: - easy way to compose functions (using one of standard operators) - overload apply operator

feature

Random strings in repr builder definitely was quick and dirty hack.

Looks like comments in code are missing.

enhancement

### 🚀 Feature The `Distribution` abstraction is defined [here](https://github.com/DLR-RM/stable-baselines3/blob/798b16aaf76ec051498a730a1d922e00184b4473/stable_baselines3/common/distributions.py#L15). But the way to introduce a new distribution to be used in the context of existing policy implementation is not obvious....

enhancement

Which is a typical safety requirement, something like `client_max_body_size` directive for Nginx. Netty's `HttpObjectAggregator` [provides](https://github.com/netty/netty/blob/b6d6d98404f216602e0dec8efd83e140c5ff7e00/codec-http/src/main/java/io/netty/handler/codec/http/HttpObjectAggregator.java#L115-L117) this functionality out of the box. The problem with introducing the same kind of settings...

feature request

There are quite a few changes introduced here. Would be more than happy to get comments before merging into `1.0.0` branch 😀 Notably: * both servers and clients close connection...

If a server sends response while a client is still transferring request body, the exception raised by netty (see details below) is caught in client handler and causes an appropriate...

feature request

Explicitly set "Transfer-Encoding: chunked" might lead to a chunked response being sent alongside with the Content-Length header. ```clojure (require '[aleph.http :as http]) (http/start-server (fn [_] {:status 200 :headers {"transfer-encoding" "chunked"}...