David Cottrell

Results 23 comments of David Cottrell

It isn't really explained very well theoretically. A few observations: it is basically a meta-probability model if you forget about bet-size and just focus on model B is predicting probability...

I think we are closing #590 and merging the discussion thread into here. Basically, it was summarized as this ``` As a Data Consumer I want to request a subset...

Why not just use parquet or better yet pyarrow record batch? I can add this in pretty quickly if someone points to where this should go. I think I have...

@Lerbytech You can do your own backend pretty quickly. I have a sketch here that used to work on some version of joblib https://github.com/cottrell/superbasic

I hacked something in here https://github.com/cottrell/EasyOCR/tree/prob but it involved a lot of boilerplate replication of internals. I think it requires some opinions/advice to turn that into a PR. It might...

@mhconradt Can you clarify is that pl and not arrow? Just trying to understand if parquet partitions reading is somewhat supported in some version. It doesn't seem to be in...

It is further below, I just meant the quickstart section should have a forward function perhaps. Maybe I should have just edited the README and added a PR for discssion.

I agree. Not a silly question, docs don't lead one to dive in beyond starting it up and the yml. examples are deprecated. If anyone has more examples somewhere on...

I'm still not clear on what is intended to be the correct way to avoid `static_field`? If you want to have as above ``` class Test(eqx.Module): a: jnp.array b: jnp.array...

> > If you want to have as above but with b static in `__call__` but not use the `static_field`. > > What is you're looking to accomplish here, precisely?...