Paul Maevskikh

Results 6 comments of Paul Maevskikh

I am trying to inspect B's instance to get memory size with all its contents (including B's instance-only and `wrapped`-only). The proxy objects are transparent for underlying ones, but not...

By the way, anybody knows, how to get `py::array_t` from `std::shared_ptr` without copy (and using `new`/`delete`)? I tried this: ```c++ std::shared_ptr ptr = get_data(); return py::array_t{ ptr->size(), ptr->data(), py::capsule(ptr.get(), [](void*...

Thanks @ferdonline However, the move-helper needs to change signature to: ```c++ template inline py::array_t as_pyarray(Sequence&& seq) ``` With such fix, the compiler will warn you if you calls with without...

I've forked this to rewrite with supporting models trained with TensorFlow backend in latest Keras (2.1.5), see [arquolo/kerasify](https://gitlab.com/arquolo/kerasify). Now it's simplier for contributing, because there're classes in separate source files....

@patrikhuber No, I just moved it to [gitlab](gitlab.com/arquolo/kerasify)

Maybe it's better to add helper that runs callable (`main` from above), and returns its result. Currently `typer.run` is `NoReturn` by it's behavior, because it calls `exit()` deep inside of...