Me to: http://clojure-log.n01se.net/date/2010-11-07.html#11:57
On Nov 10, 5:59 pm, Leif Walsh wrote:
> I am reminded of an arcane
> implementation...http://lists.freebsd.org/pipermail/freebsd-current/2010-August/019310...
>
> On Wed, Nov 10, 2010 at 8:06 AM, pepijn (aka fliebel)
>
>
>
>
>
>
>
>
In this case 'memoize' returns a memoized version of the function 'f', which
closes over 'mem'. Each time 'memoize' is called a new atom is created, not
each time the function it returns is called.
---
Joseph Smith
j...@uwcreations.com
On Nov 11, 2010, at 2:06 PM, Manoj wrote:
> I am a n
Hi Eric,
Your neural network DSL looks great. One minor comment: why use lists
instead of sets? In the webpage you state:
"Lists are used to represent a unordered series"
... but lists are generally considered data structures whose elements
are accessible by index. The closest representation to
clojure
was not implemented until Clojure-maven-plugin version 1.3.5. Just
update the string in the section.
-S
On Nov 10, 10:36 pm, Jarl Haggerty wrote:
> Leiningen was working just fine and I was perfectly happy, and one day
> I decided I'd like to wrap my head around maven. The instruc
The combined JAR is in modules/standalone.
-S
On Nov 7, 9:50 pm, agoodno wrote:
> From the README.txt on github:
>
> ===
> Run the following command in this directory:
>
> mvn package
>
> This will produce the file target/clojure-contrib-${VERSION}.jar that
>
On Nov 8, 5:14 pm, Sean Corfield wrote:
> I meant more from the point of view of providing feedback to the
> Clojure team. If someone is comfortable developing against a fairly
> bleeding edge release, is it more valuable to the Clojure team to get
> feedback on the specific alpha builds or to get
The "correct" way to deal with this is for users of your libraries to
exclude those dependencies if they don't want them. Both Leiningen
and Maven support exclusion of transitive dependencies.
But given the reorganization of contrib, compatibility between 1.3 and
1.2 is difficult to achieve. Mai
Apple made some news during the Clojure Conj by announcing that Java support
from Apple was being deprecated. The good news today is that Oracle will
deliver future updates of Java on the Mac. I think it's safe to say that the
Mac remains a viable platform for Clojure development.
http://www.
On Fri, Nov 12, 2010 at 9:15 AM, Albert Cardona wrote:
> Hi Eric,
>
> Your neural network DSL looks great. One minor comment: why use lists
> instead of sets? In the webpage you state:
>
> "Lists are used to represent a unordered series"
>
> ... but lists are generally considered data structures w
Well, a more important matter, this example in the documentation of
atom is wrong!
The recursive calls will not be memoized if called like that. Running
this code clearly shows:
(defn memoize [f]
(let [mem (atom {})]
(fn [& args]
(if-let [e (find @mem args)]
(val e)
(le
Which natural language processing tools have you used that worked well with
clojure?
--
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 - pleas
Hey Clojurians,
I don't think there are any great new movies in the theater this weekend so
if you're looking to kick back and relax and watch the tube a bit you might
checkout the first few episodes of my new screencast series on Clojure,
Emacs, Slime, etc.
http://youtube.com/emailataskcom
The
Thanx Stuart. That gives me the guidance I was looking for.
On Fri, Nov 12, 2010 at 7:10 AM, Stuart Sierra
wrote:
> I think it depends. If it's a build/deployment-related issue, probably
> the alpha releases. If it looks like a bug, try the latest Clojure
> source from github and report the Git c
Carson writes:
> Hi! That looks interesting. I'm curious how big a network are you
> intending to experiment with? (ie, # of layers, size of layers?).
>
I haven't really thought about limits on the size of the networks,
although I suppose with very large networks it may become a good idea to
Hi Albert,
Albert Cardona writes:
> Hi Eric,
>
> Your neural network DSL looks great. One minor comment: why use lists
> instead of sets? In the webpage you state:
>
> "Lists are used to represent a unordered series"
>
I used lists because I want to be able to specify a network in which (at
lea
On 2010-11-12, at 4:25 PM, Scott Jaderholm wrote:
> Hey Clojurians,
>
> I don't think there are any great new movies in the theater this weekend so
> if you're looking to kick back and relax and watch the tube a bit you might
> checkout the first few episodes of my new screencast series on Clo
I've already crawled back to leiningen, but but changing the version
lets me start my swank server in a maven project.
On Nov 12, 8:03 am, Stuart Sierra wrote:
> clojure
> was not implemented until Clojure-maven-plugin version 1.3.5. Just
> update the string in the section.
>
> -S
>
> On Nov
On Nov 13, 9:12 am, "Eric Schulte" wrote:
> Albert Cardona writes:
>
> > Your neural network DSL looks great. One minor comment: why use lists
> > instead of sets? ...
>
> I used lists because I want to be able to specify a network in which (at
> least initially) all neurons in a hidden layer a
18 matches
Mail list logo