Re: [Haskell-cafe] AI - machine learning

2012-07-30 Thread Mihai Maruseac
On Mon, Jul 30, 2012 at 4:39 PM, Chris Taylor  wrote:
> miro  gmail.com> writes:
>
>>
>> Hi All, recently I started to take a look at haskell,
>>   especially at AI. I can see some email addresses of interested
>>   people there but not so much of other activity behind. Does it
>>   exist some mailing group especially for AI?
>>   Basically I'm interested in trying some machine learning
>>   algorithms. Start with reinforcement learning and value-based),
>>   and go towards AGI (Artificial General Intelligence). Does anybody
>>   know about some already existing haskell approaches, or is there
>>   anybody working on this?
>>   Cheers,
>>   m.
>>
>
> Hi Miro
>
> For the past month or so I've been working through some of the algorithms in
> Artificial Intelligence: A Modern Approach by Russell and Norvig, and
> implementing them in Haskell. The code is available on github
> (https://github.com/chris-taylor/aima-haskell), you may be interested in 
> taking
> a look. I haven't written any code for reinforcement learning yet, though I 
> have
> implemented value iteration and policy iteration for MDPs.
>

Hi,

I have an implementation of maze solving via genetic algorithms in
Haskell at https://github.com/mihaimaruseac/HsMaze

It was a homework with some added extensions but I guess that it is
worth a look and some feedabck if possible :)

Thanks

-- 
MM

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] AI - machine learning

2012-07-30 Thread Chris Taylor
miro  gmail.com> writes:

> 
> Hi All, recently I started to take a look at haskell,
>   especially at AI. I can see some email addresses of interested
>   people there but not so much of other activity behind. Does it
>   exist some mailing group especially for AI? 
>   Basically I'm interested in trying some machine learning
>   algorithms. Start with reinforcement learning and value-based),
>   and go towards AGI (Artificial General Intelligence). Does anybody
>   know about some already existing haskell approaches, or is there
>   anybody working on this?
>   Cheers,
>   m.
> 

Hi Miro

For the past month or so I've been working through some of the algorithms in 
Artificial Intelligence: A Modern Approach by Russell and Norvig, and 
implementing them in Haskell. The code is available on github 
(https://github.com/chris-taylor/aima-haskell), you may be interested in taking 
a look. I haven't written any code for reinforcement learning yet, though I 
have 
implemented value iteration and policy iteration for MDPs.

Chris


___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] AI - machine learning

2012-05-18 Thread Miro

Hi Christian,

thanks for the reply. I'm on a very similar boat regarding  machine 
learning as you.


What I'm interested in is AGI (Artificial General Inteligence), where 
the machine learning is general (not specialized and limited in some 
kind of way). I was thinking to make a small application which I could 
train for example to communicate with me (simulate grow development). 
Later I would go ahead with some simple tasks,...etc.


So far I thought that behind will be some modification of reinforcement 
and evolutionary learning. Knowledge/data will be in graph DB (what 
seems that it would need to be done by me/us? :-) )


Let me know if this sounds interesting for you.

Cheers,
Miro

On 18.05.2012 13:21, C Gosch wrote:

Hi all,

I have implemented max-sum/sum-product in c++ before and a while ago,
did the same in Haskell.
I don't think my implementation is as idiomatic Haskellish as I would
like, and I have so far not
published it and also not looked at it for a little while (since I
have some more projects :) ).
However, if you are interested, I will publish it (maybe on github?),
and I think we should join forces.
I am also very interested in machine learning techniques, but I can
unfortunately use neither those nor Haskell at
my day job at present.

Let me know what you think.

Best regards,
Christian


Message: 3
Date: Thu, 17 May 2012 15:36:08 +0400
From: Paul Graphov
Subject: Re: [Haskell-cafe] AI - machine learning
To: miro
Cc: haskell-cafe@haskell.org
Message-ID:

Content-Type: text/plain; charset=UTF-8

Hi Miro!

I have no useful information for you. Few weeks ago I also checked for
any AI (machine learning first of all) related packages exist and
found nothing satisfactory except for some quite small packages
implementing a single algorithm (like NN-back-propagation). So there
is a lot to do :)

If you are going to do something in this area please let me know, I'll
be glad to collaborate!

p.s. Now I'm taking Machine Learning course at Coursera.org and
looking forward to apply this knowledge with Haskell.

On Tue, May 15, 2012 at 3:02 AM, miro  wrote:

Hi All, recently I started to take a look at haskell, especially at AI. I
can see some email addresses of interested people there but not so much of
other activity behind. Does it exist some mailing group especially for AI?

Basically I'm interested in trying some machine learning algorithms. Start
with reinforcement learning and value-based), and go towards AGI (Artificial
General Intelligence). Does anybody know about some already existing haskell
approaches, or is there anybody working on this?

Cheers,
m.


___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] AI - machine learning

2012-05-18 Thread C Gosch
Hi all,

I have implemented max-sum/sum-product in c++ before and a while ago,
did the same in Haskell.
I don't think my implementation is as idiomatic Haskellish as I would
like, and I have so far not
published it and also not looked at it for a little while (since I
have some more projects :) ).
However, if you are interested, I will publish it (maybe on github?),
and I think we should join forces.
I am also very interested in machine learning techniques, but I can
unfortunately use neither those nor Haskell at
my day job at present.

Let me know what you think.

Best regards,
Christian


Message: 3
Date: Thu, 17 May 2012 15:36:08 +0400
From: Paul Graphov 
Subject: Re: [Haskell-cafe] AI - machine learning
To: miro 
Cc: haskell-cafe@haskell.org
Message-ID:
   
Content-Type: text/plain; charset=UTF-8

Hi Miro!

I have no useful information for you. Few weeks ago I also checked for
any AI (machine learning first of all) related packages exist and
found nothing satisfactory except for some quite small packages
implementing a single algorithm (like NN-back-propagation). So there
is a lot to do :)

If you are going to do something in this area please let me know, I'll
be glad to collaborate!

p.s. Now I'm taking Machine Learning course at Coursera.org and
looking forward to apply this knowledge with Haskell.

On Tue, May 15, 2012 at 3:02 AM, miro  wrote:
> Hi All, recently I started to take a look at haskell, especially at AI. I
> can see some email addresses of interested people there but not so much of
> other activity behind. Does it exist some mailing group especially for AI?
>
> Basically I'm interested in trying some machine learning algorithms. Start
> with reinforcement learning and value-based), and go towards AGI (Artificial
> General Intelligence). Does anybody know about some already existing haskell
> approaches, or is there anybody working on this?
>
> Cheers,
> m.

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] AI - machine learning

2012-05-17 Thread Paul Graphov
Hi Miro!

I have no useful information for you. Few weeks ago I also checked for
any AI (machine learning first of all) related packages exist and
found nothing satisfactory except for some quite small packages
implementing a single algorithm (like NN-back-propagation). So there
is a lot to do :)

If you are going to do something in this area please let me know, I'll
be glad to collaborate!

p.s. Now I'm taking Machine Learning course at Coursera.org and
looking forward to apply this knowledge with Haskell.

On Tue, May 15, 2012 at 3:02 AM, miro  wrote:
> Hi All, recently I started to take a look at haskell, especially at AI. I
> can see some email addresses of interested people there but not so much of
> other activity behind. Does it exist some mailing group especially for AI?
>
> Basically I'm interested in trying some machine learning algorithms. Start
> with reinforcement learning and value-based), and go towards AGI (Artificial
> General Intelligence). Does anybody know about some already existing haskell
> approaches, or is there anybody working on this?
>
> Cheers,
> m.
>
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


[Haskell-cafe] AI - machine learning

2012-05-14 Thread miro
Hi All, recently I started to take a look at haskell, especially at AI. 
I can see some email addresses of interested people there but not so 
much of other activity behind. Does it exist some mailing group 
especially for AI?


Basically I'm interested in trying some machine learning algorithms. 
Start with reinforcement learning and value-based), and go towards AGI 
(Artificial General Intelligence). Does anybody know about some already 
existing haskell approaches, or is there anybody working on this?


Cheers,
m.
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe