I've been working with a number of collaborators on a deep learning library
for Clojure.
Some key features:
- An abstract API for key machine learning functionality
- Ability to declare graphs / stacks of operations (somewhat analogous to
tensorflow)
- Support for multiple underlying implementa
At a glance, this is probably the normal increasing-size behavior of
test.check, and the bias should only be present for the first few samples.
E.g., if you do a (take 1000 (gen/sample ...)), it should be more uniform.
Whether it's a real problem depends on how you're running your tests. I
have
Running the Quick Start, I get the "No 'xpc' param provided to child
iframe." error from, I think, start-evaluator in
cljs.clojure.browser.repl.cljs when I try to get the repl running. This is
in both Safari and Chrome. Any idea what I'm doing wrong?
On Monday, 25 April 2016 21:39:57 UTC+10,
So I tried some more and figured out that its the ::autoinc key that causes
this:
(s/def ::column (s/keys :req-un [::name ::type]
:opt-un [::null ::max-length
::required ::pk
::autoinc
I'm trying to generate logical predicates in order to test a function that
should return the predicate in DNF. The generation seems to be biased
towards one of the predicates. What am I doing wrong?
(require '[clojure.spec :as s])
(require '[clojure.spec.gen :as gen])
(s/def ::atom string?)
(s/d
Anyone seriously working on deep learning with Clojure?
I'm working with Torch at the day job, and have done work integrating
Tensorflow into Clojure, so I'm fairly familiar with the challenges of what
needs to be done. A bit too much to bite off on my own in my spare time.
So is anyone out there
Not sure I understand what you mean. What do you mean by "main module"?
cljs has a notion of a base module, while shadow-build does not.
Typically your ns structure and the requires are enough to establish
relationships between them so shadow-build can figure out what needs to be
where. If that
Thomas,
I as well think modules is the right approach when using web workers.
What can I do if my app code is build from many namespaces? How do I tell
the main module to use all of them? Do I have to list them ALL?
On Friday, February 19, 2016 at 5:54:59 PM UTC+2, William la Forge wrote:
>
> C