[ANN] defn podcast episode #11 with Alex Miller

2016-10-06 Thread Vijay Kiran
Hello everyone, Episode 11 of defn is now available on the Interwebs. You can listen to it on SoundCloud: https://soundcloud.com/defn-771544745/episode-11-alex-miller or subscribe via iTunes https://itunes.apple.com/us/podcast/defn/id1114899563 The show notes are available on

Re: [ANN] zprint, lein-zprint Pretty print your code and data [ALPHA]

2016-10-06 Thread Yehonathan Sharvit
Looks very nice! I'd like to integrate zprint into KLIPSE . But for that I need zprint to be ported to clojurescript. Could you do it? On Friday, 7 October 2016 05:39:39 UTC+3, Kim Kinnear wrote: > > > I'm pleased to announce the ALPHA release of a new Clojure

Re: Recursive clojure.spec doesn't work

2016-10-06 Thread Yehonathan Sharvit
This recursive definition also works - the difference is that the inner :html/element is not wrapped in s/spec: (s/def :html/element (s/cat :tag keyword? :attrs map? :children (s/* (s/alt :element :html/element :string string? I'm a bit confused

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

2016-10-06 Thread Sunil S Nandihalli
I think deeplearning4J is a contender for deeplearning in clojure. I have not used it .. but I repeatedly see the sponsored link on clojure-reddit. Since nobody mentioned it .. I thought of mentioning it On Fri, Oct 7, 2016 at 7:40 AM, kovas boguta wrote: > On Thu, Oct

[ANN] zprint, lein-zprint Pretty print your code and data [ALPHA]

2016-10-06 Thread Kim Kinnear
I'm pleased to announce the ALPHA release of a new Clojure pretty print library and associated leiningen plugin to apply it to your source files. The zprint library will pretty print your structures (and code, actually) at the repl, as well as reformat your source files when driven by

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

2016-10-06 Thread kovas boguta
On Thu, Oct 6, 2016 at 9:26 PM, Mikera wrote: > > I'm hoping to work with Dragan to get core.matrix integration working with > Neanderthal, now that Windows support is finally arriving. This would get > you a few big advantages: > Yes, I can see how my problem

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

2016-10-06 Thread kovas boguta
On Thu, Oct 6, 2016 at 9:20 PM, Mikera wrote: > Hi Dragan, > > We have things working quite well (including stuff like cuDNN integration > for convolution networks on the GPU). We also have all of the standard > stuff (many different layer types, dropout, noise

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

2016-10-06 Thread Mikera
On Friday, 7 October 2016 08:25:31 UTC+8, kovasb wrote: > > On Thu, Oct 6, 2016 at 4:46 PM, Dragan Djuric > wrote: > > >> s more harm than good. I prefer to give users one Ford model T, than let >> them choose between 20 different horse carriages. And, if they can even >>

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

2016-10-06 Thread Mikera
Hi Dragan, We have things working quite well (including stuff like cuDNN integration for convolution networks on the GPU). We also have all of the standard stuff (many different layer types, dropout, noise function, regularisation etc.). However I think it still needs a bunch of work before we

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

2016-10-06 Thread kovas boguta
On Thu, Oct 6, 2016 at 4:46 PM, Dragan Djuric wrote: > s more harm than good. I prefer to give users one Ford model T, than let > them choose between 20 different horse carriages. And, if they can even > choose the color, provided that their choice is black :) > Thanks the

Re: Should I switch to Clojure after 3 years of learning another full stack ?

2016-10-06 Thread TR NS
On Thursday, October 6, 2016 at 5:39:43 PM UTC-4, Xman wrote: > > It's been many years of postponing learning programming, because I > considered the popular languages of that time not right. > It took me nearly 3 years to learn and build a website using another stack > (I wont advertise

Re: Should I switch to Clojure after 3 years of learning another full stack ?

2016-10-06 Thread Sean Corfield
On 10/6/16, 2:05 PM, "'Xman' via Clojure" wrote: > I would like to know if Clojure is a great option to make websites ? Yes and no. There are a lot of folks here building web _applications_ with Clojure and according to the annual informal “State of Clojure”

Re: Should I switch to Clojure after 3 years of learning another full stack ?

2016-10-06 Thread Gregg Reynolds
the On Oct 6, 2016 4:39 PM, "'Xman' via Clojure" wrote: > > It's been many years of postponing learning programming, because I considered the popular languages of that time not right. > It took me nearly 3 years to learn and build a website using another stack (I wont

Should I switch to Clojure after 3 years of learning another full stack ?

2016-10-06 Thread 'Xman' via Clojure
It's been many years of postponing learning programming, because I considered the popular languages of that time not right. It took me nearly 3 years to learn and build a website using another stack (I wont advertise here), and without having much previous knowledge in programming. I have not

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

2016-10-06 Thread Dragan Djuric
Just a small addition: I looked at BidiMat's code and even at the JNI/C level they are doing some critical things that work on small scale but byte unexpectedly when JVM needs to rearrange memory and also may trigger copying. On Thursday, October 6, 2016 at 10:46:04 PM UTC+2, Dragan Djuric

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

2016-10-06 Thread Dragan Djuric
Hi Kovas, > By the way, I'd love to see matrix/tensor benchmarks of Neanderthal and > Vectorz vs ND4J, MXNet's NDArray, and BidMat.. :) > I don't have exact numbers, but will try to give you a few pointers to help you if you decide to investigate this further: 0. Neanderthal's scope is

[ANN] diff-eq - generate signal processing functions using difference equations

2016-10-06 Thread Steven Yi
Hi All, I'm pleased to announce the release of diff-eq, a library for generating signal processing functions using difference equations. https://github.com/kunstmusik/diff-eq https://clojars.org/kunstmusik/diff-eq The library provides the dfn macro which takes in a set of difference equations

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

2016-10-06 Thread kovas boguta
+1 to Dragan's inquiry. FWIW, was reviewing the state of affairs the other day: - MXNet currently has the best JVM interop story, among DL frameworks that have competitive perf. - DL4J has improved a lot recently but still looks like it has a ways to go in terms of perf. Right now I'm more

Re: Clojure + ClojureScript + Electron + Om.Next + Boot and ProtoRepl on Atom to co-exist?

2016-10-06 Thread Daniel Compton
Hi Ray We have a ClojureScript + Electron + Re-Frame application that we run. Those three work together quite nicely. I’m not totally clear what it would look like for Clojure + Boot + ProtoRepl to co-exist with the first three? Can you explain what you’re envisioning some more? On Wed, Oct 5,

Re: Recursive clojure.spec doesn't work

2016-10-06 Thread Aaron
Well I'm referring to the OP's original example: (s/def :html/element > (s/cat >:tag keyword? >:attrs map? >:children (s/* (s/alt :element (s/spec :html/element) > :string string? > > The exception says: "Unable to resolve spec: :html/element". > On

Re: [ANN] Re-launching Expectations!

2016-10-06 Thread Colin Yates
Thanks Sean. On 6 October 2016 at 19:03, Sean Corfield wrote: >> is there a 'benefits over clojure.test' blog anywhere? > > Not that I’m aware of. I added a GH issue against the website content for > that. Jay wrote a series of blog posts about Expectations back in 2011 that

Re: [ANN] Re-launching Expectations!

2016-10-06 Thread Sean Corfield
> is there a 'benefits over clojure.test' blog anywhere? Not that I’m aware of. I added a GH issue against the website content for that. Jay wrote a series of blog posts about Expectations back in 2011 that included the justification for it:

Re: [ANN] Re-launching Expectations!

2016-10-06 Thread Colin Yates
Thanks Sean. I did have a look at that a whilst ago (when I was considering migrating to core clojure.test from midge). I think I 'get it', but is there a 'benefits over clojure.test' blog anywhere? I wonder if it is the benefits are more subjective - I personally like the names I give to tests

[ANN] Re-launching Expectations!

2016-10-06 Thread Sean Corfield
Expectations – a minimalist’s unit testing framework – is being re-launched! adding signal, removing noise Jay Fields’ awesome unit testing library and all of the associated tooling has now been pulled together under a single GitHub organization:

Re: Setting the font size

2016-10-06 Thread Cecil Westerhof
2016-10-06 14:33 GMT+02:00 Sanel Zukan : > Cecil Westerhof writes: >> I saw that I already had: >> (use 'seesaw.core) >> and called: >> (invoke-later >> >> So I changed your call also into (invoke-later. Is this OK, or is >> there a reason to do

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

2016-10-06 Thread Dragan Djuric
Hey Mike, A friend asked me if I know of any good (usable) deep learning libraries for Clojure. I remembered you had some earlier neural networks library that was at least OK for experimenting, but seems abandoned for your current work in a similar domain. A bit of digging lead me to this

Re: Setting the font size

2016-10-06 Thread Sanel Zukan
Cecil Westerhof writes: > I saw that I already had: > (use 'seesaw.core) > and called: > (invoke-later > > So I changed your call also into (invoke-later. Is this OK, or is > there a reason to do it your way? That is fine. It is more idiomatic to use 'require' to

Re: Recursive clojure.spec doesn't work

2016-10-06 Thread Alex Miller
Can you share a specific case? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe

Re: Setting the font size

2016-10-06 Thread Cecil Westerhof
2016-10-06 12:08 GMT+02:00 Sanel Zukan : > Cecil Westerhof writes: >> Two points: >> When using: >> (seesaw/invoke-later >> I get: >> Exception in thread "main" java.lang.RuntimeException: No such >> namespace: seesaw >> >> What do I need to do to

Re: Setting the font size

2016-10-06 Thread Sanel Zukan
Cecil Westerhof writes: > Two points: > When using: > (seesaw/invoke-later > I get: > Exception in thread "main" java.lang.RuntimeException: No such > namespace: seesaw > > What do I need to do to get rid of this? (require '[seesaw.core :as seesaw]) > Is it

Re: Setting the font size

2016-10-06 Thread Cecil Westerhof
2016-10-05 13:22 GMT+02:00 Sanel Zukan : > Setting fonts under Seesaw isn't the most intuitive option, so you'd > have to dig into Swing core for this and investigate > java.swing.UIManager documentation. > > Here is a function that I often use in my applications: > > (defn