Re: TensorFlow bindings to Guile?

2019-10-28 Thread Jan Wedekind
On Sat, 26 Oct 2019, Arne Babenhauserheide wrote: Hi Jan, Jan Wedekind writes: On Wed, 23 Oct 2019, Arne Babenhauserheide wrote: Is aiscm already at a stage where I could experiment with using it for handwriting recognition even though I don’t have prior experience with setting up machine le

Re: TensorFlow bindings to Guile?

2019-10-26 Thread Arne Babenhauserheide
Hi Jan, Jan Wedekind writes: > On Wed, 23 Oct 2019, Arne Babenhauserheide wrote: >> Is aiscm already at a stage where I could experiment with using it for >> handwriting recognition even though I don’t have prior experience with >> setting up machine learning pipelines? > I have only tested th

Re: TensorFlow bindings to Guile?

2019-10-25 Thread Jan Wedekind
Hello list, I am looking for a binding (glue code) between the TensorFlow library and Guile. I want to play a bit with TensorFlow using Guile. Does such a beast exist? I updated the documentation today [1]. Note that the TAR-GZ releases do not include Tensorflow bindings yet. I.e. you need

Re: TensorFlow bindings to Guile?

2019-10-23 Thread Nala Ginrut
a framework based on AIscm, just like Keras to Tensorflow. I just need more time slots. Best regards. Arne Babenhauserheide 于 2019年10月24日周四 04:37写道: > Hi Jan, > > Jan Wedekind writes: > > Hi Basile, > > I have implemented Tensorflow bindings for Guile: > http://

Re: TensorFlow bindings to Guile?

2019-10-23 Thread Jan Wedekind
On Wed, 23 Oct 2019, Arne Babenhauserheide wrote: Hi Jan, Jan Wedekind writes: Hi Basile, I have implemented Tensorflow bindings for Guile: http://wedesoft.github.io/aiscm/ Let me know if you have any problems installing it. Is aiscm already at a stage where I could experiment with using

Re: TensorFlow bindings to Guile?

2019-10-23 Thread Arne Babenhauserheide
Hi Jan, Jan Wedekind writes: > Hi Basile, > I have implemented Tensorflow bindings for Guile: > http://wedesoft.github.io/aiscm/ > Let me know if you have any problems installing it. Is aiscm already at a stage where I could experiment with using it for handwriting recognition e

Re: TensorFlow bindings to Guile?

2019-10-23 Thread Aleix Conchillo Flaqué
Hi! On Wed, Oct 23, 2019 at 5:33 AM bas...@starynkevitch.net < bas...@starynkevitch.net> wrote: > > Hello list, > > I am looking for a binding (glue code) between the TensorFlow library and > Guile. I want to play a bit with TensorFlow using Guile. > > Does such a beast exist? > > PS. I really ha

TensorFlow bindings to Guile?

2019-10-23 Thread basile
Hello list, I am looking for a binding (glue code) between the TensorFlow library and Guile. I want to play a bit with TensorFlow using Guile. Does such a beast exist? PS. I really hate Python, and I am allergic to its syntax with significant spaces (even if I am aware that the semantics of

Re: Tensorflow bindings

2018-12-26 Thread Jan Wedekind
On 15 December 2018 22:55:06 GMT+00:00, David Pirotte wrote: >Hello Jan, > >> The current AIscm source now include Tensorflow bindings [1]. >> This means that one can now develop machine learning software using >Guile >> and Tensorflow. More examples to follow ... > >This

Re: Tensorflow bindings

2018-12-15 Thread David Pirotte
Hello Jan, > The current AIscm source now include Tensorflow bindings [1]. > This means that one can now develop machine learning software using Guile > and Tensorflow. More examples to follow ... This is excellent news! I've had no time (yet), but I'm interested to see wha

Re: Tensorflow bindings

2018-12-15 Thread Amirouche Boubekki
On 2018-12-10 22:27, Jan Wedekind wrote: Hi, The current AIscm source now include Tensorflow bindings [1]. This means that one can now develop machine learning software using Guile and Tensorflow. More examples to follow ... Jan [1] http://wedesoft.github.io/aiscm/tensorflow.html Great

Re: Tensorflow bindings

2018-12-15 Thread Jan Wedekind
I updated the MNIST example some more and added a bit of documentation: (use-modules (oop goops) (ice-9 binary-ports) (ice-9 format) (srfi srfi-1) (rnrs bytevectors) (system foreign) (aiscm c

Re: Tensorflow bindings

2018-12-13 Thread Jan Wedekind
Here follows another example. The MNIST handwritten digit database is a well-known benchmark for machine learning. The following code implements a neural network with two convolutional layers and two fully connected layers. The example achieves an error rate of 2.75%. I am planning to add regula

Re: Tensorflow bindings

2018-12-11 Thread Jérémy Korwin-Zmijowski
So cool ! Le 10 décembre 2018 23:16:36 GMT+01:00, "Aleix Conchillo Flaqué" a écrit : >On Mon, Dec 10, 2018 at 1:27 PM Jan Wedekind wrote: >> >> Hi, >> >> The current AIscm source now include Tensorflow bindings [1]. >> This means that one can now dev

Re: Tensorflow bindings

2018-12-10 Thread Aleix Conchillo Flaqué
On Mon, Dec 10, 2018 at 1:27 PM Jan Wedekind wrote: > > Hi, > > The current AIscm source now include Tensorflow bindings [1]. > This means that one can now develop machine learning software using Guile > and Tensorflow. More examples to follow ... > > Jan > > [1] h

Tensorflow bindings

2018-12-10 Thread Jan Wedekind
Hi, The current AIscm source now include Tensorflow bindings [1]. This means that one can now develop machine learning software using Guile and Tensorflow. More examples to follow ... Jan [1] http://wedesoft.github.io/aiscm/tensorflow.html