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

2016-05-30 Thread Mikera
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

Re: clojure.spec generation question

2016-05-30 Thread Gary Fredericks
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

Re: ANN: ClojureScript 1.8.51

2016-05-30 Thread Peter West
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,

Re: spec - s/gen validation error

2016-05-30 Thread 'Sven Richter' via Clojure
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

clojure.spec generation question

2016-05-30 Thread Jeroen van Dijk
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

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

2016-05-30 Thread kovas boguta
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

Re: How to compile with optimizations none when using web workers

2016-05-30 Thread Thomas Heller
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

Re: How to compile with optimizations none when using web workers

2016-05-30 Thread Asher Coren
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