Results 25 comments of Jeff Pollock
trafficstars

I'm also interested in having this and would be happy to contribute. If anyone else has any pointers or ideas on this that would be great. Thanks.

I also found this quite surprising - in the short term is anyone aware of a workaround? Thanks!

Many thanks for implementing this distribution and all the great work on brms! I tried out this distribution but was getting odd results so wrote a test - I think...

@paul-buerkner yes that fixes it - thanks again! Sorry I missed that, it might be worth making this very clear in the docs as it is different from all the...

I _think_ the best fix is to add a `~/.R/Makevars` file which contains a line like `CXX14=g++` (or whatever compiler you'd like to use for packages which require a C++-14...

You could try, I don't know what c/c++ compilers you have on your system so using g++ etc might not be right for you. Also in the first line I...

> I got: > > ``` > error: unrecognized command line option ‘-std=c++14’ > ``` @gersonjr what C++ compiler + version are you using? Could be quite old and wouldn't...

@gersonjr that's a really old compiler which I don't think has full C++14 support, IIRC you can turn on partial support with `-std=c++1y` which _might_ be enough.

Hi @minaskar If at all useful, I've coded up e.g. zero inflated Poisson stuff as a [Mixture](https://www.tensorflow.org/probability/api_docs/python/tfp/distributions/Mixture) of a [Deterministic](https://www.tensorflow.org/probability/api_docs/python/tfp/distributions/Deterministic) and [Poisson](https://www.tensorflow.org/probability/api_docs/python/tfp/distributions/Poisson) before. Something like this: ``` python import matplotlib.pyplot...