Sebastian Bischoff

Results 10 comments of Sebastian Bischoff

This feature would be very nice

Our problem was that we just used `SESSION_FILE_MODE = int('0700')` but this cuts of the leading zero so you've to use `SESSION_FILE_MODE = int('0700', 8)` which preserves the leading zero.

Thanks a lot for your help. `vf_dict, f = dyn.vf.utils.vecfld_from_adata(adata, basis='umap')` currently fails with `ValueError: Vector field function VecFld_umap is not included in the adata object! Try firstly running dyn.vf.VectorField(adata,...

Great this works now. The view is also not needed anymore once PR https://github.com/aristoteleo/dynamo-release/pull/619 is merged. Is there any way of learning the vector field for all original genes and...

I can look into this (but cannot assign myself yet)

Apart from `getting_started`, it's also used in `01_gaussian_amortized.ipynb` but I think that makes sense as only the next notebook introduces the flexible interface. ~~Just to double check, `call_kwargs` is intended...

We had to add `-I/path/to/gsl/include -L/path/to/gsl/lib` to the `CPPFLAGS` and run `export LD_LIBRARY_PATH=/path/to/gsl/lib:$LD_LIBRARY_PATH` to successfully run `make all`.

Wouldn't a `Open In Colab` button with our `Getting started` notebook do the same without requiring us to maintain a Dockerfile?

It apparently worked as it is right now in @famura's tests in #1063 ([CI run](https://github.com/sbi-dev/sbi/actions/runs/8388303985/job/22972197714)) with basically the same command: https://github.com/sbi-dev/sbi/pull/1063/files#diff-ea3ea8c9932adc7ba8161ceda844fedd43b006848ef1140c050cbd7ea0788a18R74-R78 Maybe it's once again dependent on the Python version....