Re: Genetic Algorithm in Clojure

2018-03-21 Thread Boris V. Schmid
This is one of the most active genetic programming systems libraries in clojure https://github.com/lspector/Clojush But for an assignment, I would go with http://gigasquidsoftware.com/blog/2016/07/18/genetic-programming-with-clojure-dot-spec/ On Tuesday, March 20, 2018 at 11:17:49 AM UTC+1, Do

Re: ANN: Clojurists Together - Funding critical Clojure open source projects

2017-11-16 Thread Boris V. Schmid
Very interesting. Thanks for putting this together! This seems like a good way for those of us (like me) that aren't software writers/maintainers to contribute to clojure. Thanks again. B. On Tuesday, November 14, 2017 at 12:21:42 AM UTC+1, Daniel Compton wrote: > > Hi folks > > Today we are i

Re: What is juxt really doing?

2017-07-16 Thread Boris V. Schmid
I don't use juxt much, but the example that I did pick up is where juxt is used for sorting on one function first, and in the case of a tie, on the second function. That is quite useful to me. > (sort-by (juxt first second) (map vector (repeatedly 10 #(rand-int 3)) (shuffle (range 10 ([0 1

Re: Slides for my talk at EuroClojure 2016

2016-10-23 Thread Boris V. Schmid
what with PyMC? > > On Sunday, October 23, 2016 at 8:17:16 PM UTC+2, Boris V. Schmid wrote: >> >> I am using Anglican for estimating parameters of epidemiological models, >> generally in the shape of limited (mortality) data, and less than a dozen >> parameters that need to

Re: Slides for my talk at EuroClojure 2016

2016-10-23 Thread Boris V. Schmid
uct any of more serious data analysis problems. Having > seen its implementation, I expect the performance comparison would make > Bayadera shine, so I hope I'll be able to construct some examples that can > be implemented in both environments :) > > On Sunday, October 23, 2016 at

Re: Slides for my talk at EuroClojure 2016

2016-10-23 Thread Boris V. Schmid
Thanks Dragan. Interesting slides, and interesting section on Bayadera. Incanter, as far as I know indeed doesn't support MCMC, but there is a fairly large project based on clojure that does a lot of bayesian inference. Just in case you haven't run into it: http://www.robots.ox.ac.uk/~fwood/an

Re: Clojure with Tensorflow, Torch etc (call for participation, brainstorming etc)

2016-10-20 Thread Boris V. Schmid
Small addition to this post: There is a tiny library (toy project) of ddosic, who build a neural network with neanderthal. It might be interesting as a benchmark of what speed neanderthal can reach (although it might not currently be a good reflection of neanderthal), versus larger packages wit

Re: Clojure support for Visual Studio Code

2016-09-24 Thread Boris V. Schmid
Just started using your plugin. Thanks. So far so good. Two questions. 1. Every time I eval something, or have an error, a bar appears on top, like this: "[Info] Successfully Compiled[Close]". They don't fade away automatically, and stack, meaning that they block the top part of the edito

Re: Is there a way to alpha 11 or higher, but disable a single spec?

2016-09-23 Thread Boris V. Schmid
++ wrote: > > Why not submit a PR against Lighttable as that's where the real bug is? > > On Fri, Sep 23, 2016 at 2:08 PM, Boris V. Schmid > wrote: > >> lighttable has some trouble with the newer alpha's, in that it throws >> this error: >> >>

Is there a way to alpha 11 or higher, but disable a single spec?

2016-09-23 Thread Boris V. Schmid
lighttable has some trouble with the newer alpha's, in that it throws this error: > Call to clojure.core/ns did not conform to spec: ... ((require > [clojure.string :as string] [cljs.source-map.base64 > > It seems like the spec doesn't like "require" there (but rather wants the :require keywo

Re: clojure, not the go to for data science

2015-12-19 Thread Boris V. Schmid
Just noticed one of my research paper made it to the showcase :-). Thanks for that! As for clojure resources: I have been mainly used clojure itself, and visualization libraries, (incanter, quil and gg4clj [to make plots in R with ggplot2, but you can use it to run any R code]), and sometimes a

New scientific article out on plague and climate, using clojure, quil and incanter for data analysis, and lighttable as IDE.

2015-02-24 Thread Boris V. Schmid
Hi all, Published a new paper, using clojure, quil, and incanter to do some custom statistics (permutation testing) and data exploration, and lighttable as IDE Aim was to discover the wildlife reservoirs of plague in medieval Europe, but we ended up finding evidence for repeated reintroductions

Re: using -> on a nested hash-map with string keywords.

2012-06-01 Thread Boris V. Schmid
ot; with > > (get "b") and you'll get the behavior you're looking for. > > > > Dave > > > > On Thu, May 31, 2012 at 7:55 AM, Boris V. Schmid > wrote: > > > > > > > > > > > > > > > > >

using -> on a nested hash-map with string keywords.

2012-05-31 Thread Boris V. Schmid
Can someone tell me what I'm overlooking (clojure 1.4) (-> (hash-map :b (hash-map :a 3)) :b :a) 3 user> (-> (hash-map "b" (hash-map :a 3)) "b" :a) ; Evaluation aborted: java.lang.String cannot be cast to clojure.lang.IFn I'm not sure why the first can work, and the second cannot. Is it a logical

Re: Network Visual Layout Algorithm

2012-05-31 Thread Boris V. Schmid
I did some network visualization a long time ago, and for big networks I found it fast to call toxiclib from clojure for calculating the layout, and use repulsive springs to generate my network, and once its relatively stable, add additional repulsive springs between overlapping nodes, so that

New paper based on clojure + source code out in plos comp biol :-)

2012-04-28 Thread Boris V. Schmid
Hi Clojurans, For those interested, I finally got my second scientific paper using the Clojure language published (the first came out in 2010). The nice thing is that plos comp biol requested if I could also publish the source code, which I did, and is listed as supplemental materials "protocol