Re: Probabilistic programming anyone?

2015-05-12 Thread hyang
Looks great. Could I use this to implement something like a Gibbs Sampler? On Tuesday, May 12, 2015 at 3:05:50 AM UTC-7, Frank Wood wrote: I'm a professor at Oxford and my group has been working on a new embedded language called Anglican: http://www.robots.ox.ac.uk/~fwood/anglican/ It

Re: Probabilistic programming anyone?

2015-05-12 Thread hyang
Another question: is there a particular reason why the code of Anglican is hosted on BitBucket with read only access for outsider, whereas the examples are on Github? Does that mean that you do not anticipate contributions to the language from the outside? I saw the license is GPL though. On

[ANN] editscript: a diffing library for Clojure data

2018-05-01 Thread hyang
Hello, I am happy to make available a diffing/patching library for Clojure data structures. https://github.com/juji-io/editscript Two flavors of diffing algorithms are provided, with very different performance characteristics, suitable for different applications. * One optimizing diffing

Re: [ANN] editscript: a diffing library for Clojure data

2018-05-03 Thread hyang
My readme specifically mentioned https://github.com/friemen/diffit, where I said: >...The same sequence diffing algorithm is also implemented in diffit . Using their benchmark, our implementation has slightly better performance due to more optimizations.