Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Where to start in LISP?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 29 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Peter Hildebrandt  
View profile  
 More options Jun 13 2007, 9:21 pm
Newsgroups: comp.lang.lisp
From: "Peter Hildebrandt" <pet...@icsi.berkeley.edu>
Date: Wed, 13 Jun 2007 18:21:12 -0700
Local: Wed, Jun 13 2007 9:21 pm
Subject: Re: Where to start in LISP?

On Wed, 13 Jun 2007 17:57:24 -0700, Richie <codesamur...@gmail.com> wrote:
> I am a java programmer and I work in a rapid application development
> environment at work. I am new to LISP and I am lost (because i have
> been using limelight mainstream languages like java). I want to learn
> and use LISP to develop AIs. Maybe, start with a simple game AI and
> gradually advancing towards scientific or medical AIs and then to
> financial AIs. There are several implementations or flavors of LISP.
> Where do I start? Which ones used the most? or Does each
> implementation have a specialty?

If you are used to Java, you might be familiar with the Eclipse IDE, and  
thus you might feel comfortabel starting with the cusp plugin:

http://www.paragent.com/lisp/cusp/cusp.htm

Peter Seidel's book Practical Common Lisp is in my opinion a great  
introduction to Lisp:

http://www.apress.com/free/content/practicalcommonlisp.pdf

There is much more information on the issue in the archives of this  
group.  Just search around a little, eg with Google Groups.

HTH,
Peter

--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dimiter malkia Stanev  
View profile  
 More options Jun 13 2007, 9:29 pm
Newsgroups: comp.lang.lisp
From: "Dimiter \"malkia\" Stanev" <mal...@mac.com>
Date: Wed, 13 Jun 2007 18:29:22 -0700
Local: Wed, Jun 13 2007 9:29 pm
Subject: Re: Where to start in LISP?
You can start by trying at least three commercial lisps that have trial
versions:

www.franz.com      - Allegro CL with IDE (Windows only IDE)
www.lispworks.com  - Lispworks with EMACS like editor (Windows, Mac OS
X, Linux)
www.cormanlisp.com - Windows only, non-EMACS-ie.

There are also various command-line and free implementations:

clisp, sbcl, OpenMCL (Mac), ecl, and others.

To use them you can either type your code on the command-line, or use
something called LispBox: http://www.gigamonkeys.com/lispbox/
http://common-lisp.net/project/lispbox/

LispBox is basically EMACS + SLIME + LISP system.

I've bought the commercial version of LispWorks for Windows, and with
Edi Weitz Starter Pack (http://weitz.de/starter-pack/) it's really
wonderful, I'm still getting used to the EMACS bindings, so I'm also
using OpenMCL/AquaMacs on my mac iBook, and also the Personal Edition of
Lispworks there (which can't load the Edi Weitz Starter Pack automatically).


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Hoemmen  
View profile  
 More options Jun 13 2007, 9:37 pm
Newsgroups: comp.lang.lisp
From: Mark Hoemmen <mark.hoem...@gmail.com>
Date: Wed, 13 Jun 2007 18:37:24 -0700
Local: Wed, Jun 13 2007 9:37 pm
Subject: Re: Where to start in LISP?

Richie wrote:
> I am a java programmer and I work in a rapid application development
> environment at work. I am new to LISP and I am lost (because i have
> been using limelight mainstream languages like java). I want to learn
> and use LISP to develop AIs. Maybe, start with a simple game AI and
> gradually advancing towards scientific or medical AIs and then to
> financial AIs. There are several implementations or flavors of LISP.
> Where do I start? Which ones used the most? or Does each
> implementation have a specialty?

Welcome! :-D

Don't let the meanies (they'll prolly be here soon, if they haven't come
already) scare you off -- they mean well.  Just imagine them as troll
repellant ;-)

First of all, LISP hasn't been spelled in all-caps for quite a while ;-)
    Just write Lisp.  Second, Lisp is good for a lot of things besides
AI.  You can even develop web applications with it!  Mostly I use it as
an extension language for my C applications.

If you prefer Common Lisp, the student/trial versions of LispWorks or
Allegro CL are quite easy to install.  LispWorks has an IDE which will
probably be familiar if you're used to point-and-click stuff.  The
open-source Lisps (of which there are many -- SBCL, CMUCL, OpenMCL,
Clisp, ECL for starters) are typically used in the SLIME development
environment under Emacs.  SLIME is great -- it's well worth the initial
learning curve.

If you prefer Scheme, the comp.lang.scheme newsgroup can help you :-)
MIT and UC Berkeley, among other schools, teach intro programming using
Scheme via the "Wizard Book" a.k.a. SICP (Structure and Interpretation
of Computer Programs).  There is a student-oriented Scheme IDE called
DrScheme which is used for teaching Scheme.

I like Common Lisp macros better than Scheme macros, and I use macros a
lot (I think most CL coders do).  This is a plus for CL in my book.
However, Scheme is a much more minimalist language.  It may be useful if
you are interested in embedded applications.

Best wishes!
mfh


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Hoemmen  
View profile  
 More options Jun 13 2007, 9:42 pm
Newsgroups: comp.lang.lisp
From: Mark Hoemmen <mark.hoem...@gmail.com>
Date: Wed, 13 Jun 2007 18:42:17 -0700
Local: Wed, Jun 13 2007 9:42 pm
Subject: Re: Where to start in LISP?

Richie wrote:
> I am a java programmer and I work in a rapid application development
> environment at work. I am new to LISP and I am lost (because i have
> been using limelight mainstream languages like java). I want to learn
> and use LISP to develop AIs. Maybe, start with a simple game AI and
> gradually advancing towards scientific or medical AIs and then to
> financial AIs. There are several implementations or flavors of LISP.
> Where do I start? Which ones used the most? or Does each
> implementation have a specialty?

Welcome! :-D

Don't let the meanies (they'll prolly be here soon, if they haven't come
already) scare you off -- they mean well.  Just imagine them as troll
repellant ;-)

First of all, LISP hasn't been spelled in all-caps for quite a while ;-)
    Just write Lisp.  Second, Lisp is good for a lot of things besides
AI.  You can even develop web applications with it!  Mostly I use it as
an extension language for my C applications.

If you prefer Common Lisp, the student/trial versions of LispWorks or
Allegro CL are quite easy to install.  LispWorks has an IDE which will
probably be familiar if you're used to point-and-click stuff.  The
open-source Lisps (of which there are many -- SBCL, CMUCL, OpenMCL,
Clisp, ECL for starters) are typically used in the SLIME development
environment under Emacs.  SLIME is great -- it's well worth the initial
learning curve.

If you prefer Scheme, the comp.lang.scheme newsgroup can help you :-)
MIT and UC Berkeley, among other schools, teach intro programming using
Scheme via the "Wizard Book" a.k.a. SICP (Structure and Interpretation
of Computer Programs).  There is a student-oriented Scheme IDE called
DrScheme which is used for teaching Scheme.

I like Common Lisp macros better than Scheme macros, and I use macros a
lot (I think most CL coders do).  This is a plus for CL in my book.
However, Scheme is a much more minimalist language.  It may be useful if
you are interested in embedded applications.

Best wishes!
mfh


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pascal Bourguignon  
View profile  
 More options Jun 14 2007, 2:37 am
Newsgroups: comp.lang.lisp
From: Pascal Bourguignon <p...@informatimago.com>
Date: Thu, 14 Jun 2007 08:37:33 +0200
Local: Thurs, Jun 14 2007 2:37 am
Subject: Re: Where to start in LISP?

Richie <codesamur...@gmail.com> writes:
> I am a java programmer and I work in a rapid application development
> environment at work. I am new to LISP and I am lost (because i have
> been using limelight mainstream languages like java). I want to learn
> and use LISP to develop AIs. Maybe, start with a simple game AI and
> gradually advancing towards scientific or medical AIs and then to
> financial AIs. There are several implementations or flavors of LISP.
> Where do I start? Which ones used the most? or Does each
> implementation have a specialty?

Have a look at AIMA and PAIP:

Artificial Intelligence: A Modern Approach,
http://aima.cs.berkeley.edu

Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp
http://www.cliki.net/PAIP

both by Peter Norvig.

--
__Pascal Bourguignon__                     http://www.informatimago.com/

NOTE: The most fundamental particles in this product are held
together by a "gluing" force about which little is currently known
and whose adhesive power can therefore not be permanently
guaranteed.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Pascal Costanza  
View profile  
 More options Jun 14 2007, 3:31 am
Newsgroups: comp.lang.lisp
From: Pascal Costanza <p...@p-cos.net>
Date: Thu, 14 Jun 2007 09:31:25 +0200
Local: Thurs, Jun 14 2007 3:31 am
Subject: Re: Where to start in LISP?

Richie wrote:
> I am a java programmer and I work in a rapid application development
> environment at work. I am new to LISP and I am lost (because i have
> been using limelight mainstream languages like java). I want to learn
> and use LISP to develop AIs. Maybe, start with a simple game AI and
> gradually advancing towards scientific or medical AIs and then to
> financial AIs. There are several implementations or flavors of LISP.
> Where do I start? Which ones used the most? or Does each
> implementation have a specialty?

Paradigms of Artificial Intelligence Programming by Peter Norvig is a
great book for learning both classic AI techniques and Common Lisp at
the same time.

Pascal

--
My website: http://p-cos.net
Common Lisp Document Repository: http://cdr.eurolisp.org
Closer to MOP & ContextL: http://common-lisp.net/project/closer/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 14 2007, 3:55 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Thu, 14 Jun 2007 00:55:51 -0700
Local: Thurs, Jun 14 2007 3:55 am
Subject: Re: Where to start in LISP?
On Jun 14, 2:57 am, Richie <codesamur...@gmail.com> wrote:

> I am a java programmer and I work in a rapid application development
> environment at work. I am new to LISP and I am lost (because i have
> been using limelight mainstream languages like java). I want to learn
> and use LISP to develop AIs. Maybe, start with a simple game AI and
> gradually advancing towards scientific or medical AIs and then to
> financial AIs. There are several implementations or flavors of LISP.
> Where do I start? Which ones used the most? or Does each
> implementation have a specialty?

We don't do any AI since the AI winter in whenever that was. We use
lisp only for web applications, accounting software  and other real
staff.

>There are several implementations or flavors of LISP.
> Where do I start?

Get yourself a good book about lisp, then learn ai.
Just search google group for tip about either and other posters
already give you idea.
> Which ones used the most? or Does each
> implementation have a specialty?

If you stick to the standard common lisp which you probably do since
you're beginner just choose whichever fits for you .

Some vendors (in alphabetical order)
Corman (only windows)
Franz
Lispworks
Scieneer (only linux)

Some free implementations:
Clisp
CMUCL
ECL
OpenMCL
SBCL

If you tell us what platform you prefer win,linux etc you'll probably
get a more specific advice.

Slobodan Blazeski


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Edi Weitz  
View profile  
 More options Jun 14 2007, 8:07 am
Newsgroups: comp.lang.lisp
From: Edi Weitz <spamt...@agharta.de>
Date: Thu, 14 Jun 2007 14:07:57 +0200
Local: Thurs, Jun 14 2007 8:07 am
Subject: Re: Where to start in LISP?

On Thu, 14 Jun 2007 00:55:51 -0700, fireblade <slobodan.blaze...@gmail.com> wrote:
> Scieneer (only linux)

It's also available for Solaris and HP/UX.

--

Lisp is not dead, it just smells funny.

Real email: (replace (subseq "spamt...@agharta.de" 5) "edi")


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Russell  
View profile  
 More options Jun 14 2007, 8:22 am
Newsgroups: comp.lang.lisp
From: Chris Russell <christopher.m.russ...@gmail.com>
Date: Thu, 14 Jun 2007 12:22:41 -0000
Local: Thurs, Jun 14 2007 8:22 am
Subject: Re: Where to start in LISP?
On 14 Jun, 08:55, fireblade <slobodan.blaze...@gmail.com> wrote:

> We don't do any AI since the AI winter in whenever that was. We use
> lisp only for web applications, accounting software  and other real
> staff.

That's just what we want you to think till the robots take over.

Seriously, AI didn't go away, it took a serious kicking, rid itself of
some of it's old baggage (some good,some bad)* and re-branded itself
as machine learning.

*Disclaimer I wasn't around for the AI winter, so I don't know quite
how much cool stuff was thrown out then.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
thr...@gmail.com  
View profile  
 More options Jun 14 2007, 8:55 am
Newsgroups: comp.lang.lisp
From: Thr...@gmail.com
Date: Thu, 14 Jun 2007 05:55:29 -0700
Local: Thurs, Jun 14 2007 8:55 am
Subject: Re: Where to start in LISP?
There is another Eclipse Plugin:

http://sourceforge.net/projects/dandelion-ecl
http://www.cliki.net/Dandelion

It comes with a ready to use CLISP environment.

On 14 Jun., 03:21, "Peter Hildebrandt" <pet...@icsi.berkeley.edu>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Steve  
View profile  
 More options Jun 14 2007, 2:02 pm
Newsgroups: comp.lang.lisp
From: Steve <steve.mo...@gmail.com>
Date: Thu, 14 Jun 2007 18:02:00 -0000
Subject: Re: Where to start in LISP?
I would also recommend Peter Seidel's Lisp book and would also
recommend
Paul Graham's Ansi Common Lisp and once your more advanced I would
recommend OnLisp Awsome the book is now a cult his and routinely sells
for $200+ but Paul is giving away an online version for free.

I find lisp is one of those languages where you have to read a few
books to get the hang of it.

I like clisp my self and use slime as your ide http://common-lisp.net/project/slime/

On Jun 14, 5:55 am, Thr...@gmail.com wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 15 2007, 3:35 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Fri, 15 Jun 2007 00:35:43 -0700
Local: Fri, Jun 15 2007 3:35 am
Subject: Re: Where to start in LISP?
On Jun 14, 2:07 pm, Edi Weitz <spamt...@agharta.de> wrote:

> On Thu, 14 Jun 2007 00:55:51 -0700, fireblade <slobodan.blaze...@gmail.com> wrote:
> > Scieneer (only linux)

> It's also available for Solaris and HP/UX.

> --

> Lisp is not dead, it just smells funny.

> Real email: (replace (subseq "spamt...@agharta.de" 5) "edi")

Does hunchentoot runs on scieneer ?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 15 2007, 3:41 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Fri, 15 Jun 2007 00:41:50 -0700
Local: Fri, Jun 15 2007 3:41 am
Subject: Re: Where to start in LISP?
On Jun 14, 2:22 pm, Chris Russell <christopher.m.russ...@gmail.com>
wrote:
> On 14 Jun, 08:55, fireblade <slobodan.blaze...@gmail.com> wrote:

> > We don't do any AI since the AI winter in whenever that was. We use
> > lisp only for web applications, accounting software  and other real
> > staff.

> That's just what we want you to think till the robots take over.

And that will be ?  Insert year____

> Seriously, AI didn't go away, it took a serious kicking, rid itself of
> some of it's old baggage (some good,some bad)* and re-branded itself
> as machine learning.

Data mining perhaps. It's all written in Java.

> *Disclaimer I wasn't around for the AI winter, so I don't know quite
> how much cool stuff was thrown out then.

Yesterday I've read Richard P. Gabriels Patterns of software so got
some idea about those *fabolous* times. Actually till yesterday I
didn't know that he started Lucid.All I've knew about him is  the
essey "Worse is better."

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 15 2007, 3:44 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Fri, 15 Jun 2007 00:44:49 -0700
Local: Fri, Jun 15 2007 3:44 am
Subject: Re: Where to start in LISP?
On Jun 14, 11:07 pm, Richie <codesamur...@gmail.com> wrote:

> you people are great. thanks again for all this information.

No we're just pretending, you know the hook first dose is always free.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 15 2007, 3:51 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Fri, 15 Jun 2007 00:51:00 -0700
Subject: Re: Where to start in LISP?
On Jun 14, 1:04 pm, Richie <codesamur...@gmail.com> wrote:

> i am using windows XP Pro platform.

> Thanks all for the information. if you have more information, please
> keep it coming.

If you like slower pace try gentle introduction to symbolic
computation. Printed is hard to find but there's free pdf at authors
site .
Fast going Paul Graham Ansi Common Lisp.
If you just want to go directly to  practical  staff, Practical Common
Lisp from Seibel.
On Lisp is excellent tutorial for macros.
I can't recommend anything for AI , probably Norvigs PAIP & AI modern
approach (wuth Rassel) , Kanemoto also looked interesthing  but I
haven't try them.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Edi Weitz  
View profile  
 More options Jun 15 2007, 3:58 am
Newsgroups: comp.lang.lisp
From: Edi Weitz <spamt...@agharta.de>
Date: Fri, 15 Jun 2007 09:58:00 +0200
Subject: Re: Where to start in LISP?

On Fri, 15 Jun 2007 00:35:43 -0700, fireblade <slobodan.blaze...@gmail.com> wrote:
> Does hunchentoot runs on scieneer ?

I'd be surprised if it did, because there's no support code for
Scieneer CL in Hunchentoot's code base yet (patches welcome, of
course) and I don't have a copy of Scieneer CL to port it myself.

Also, Scieneer CL has integrated HTTP support, so it would probably be
worthwhile to let Scieneer CL do some of the work Hunchentoot does on
other Lisps.

Anyway, if you're interested, you should contact them.  They have
ported a lot of open source Lisp libraries to their Lisp (in fact,
Douglas Crosher just sent patches for CXML the other day) and I'm sure
they'd be happy to port others as well if there's customer demand.

--

Lisp is not dead, it just smells funny.

Real email: (replace (subseq "spamt...@agharta.de" 5) "edi")


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 15 2007, 4:19 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Fri, 15 Jun 2007 01:19:24 -0700
Local: Fri, Jun 15 2007 4:19 am
Subject: Re: Where to start in LISP?
On Jun 15, 9:58 am, Edi Weitz <spamt...@agharta.de> wrote:

Currently I'm developing on windows only (ok sometimes I try it on
Ubuntu too), but I would be happier with a linux box if there will be
someone to administer it, currently our servers are windows only.
Scieneer is in budget also and supports SMP so it would be
interesthing how it compares with lw.

Slobodan Blazeski


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
gavino  
View profile  
 More options Jun 15 2007, 3:03 pm
Newsgroups: comp.lang.lisp
From: gavino <gavcom...@gmail.com>
Date: Fri, 15 Jun 2007 12:03:44 -0700
Local: Fri, Jun 15 2007 3:03 pm
Subject: Re: Where to start in LISP?
gentle introduction to symbolic computation by touretsky is free online

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Russell  
View profile  
 More options Jun 16 2007, 12:29 pm
Newsgroups: comp.lang.lisp
From: Chris Russell <christopher.m.russ...@gmail.com>
Date: Sat, 16 Jun 2007 16:29:41 -0000
Local: Sat, Jun 16 2007 12:29 pm
Subject: Re: Where to start in LISP?
On 15 Jun, 08:41, fireblade <slobodan.blaze...@gmail.com> wrote:
> On Jun 14, 2:22 pm, Chris Russell <christopher.m.russ...@gmail.com>
> wrote:> On 14 Jun, 08:55, fireblade <slobodan.blaze...@gmail.com> wrote:

> > > We don't do any AI since the AI winter in whenever that was. We use
> > > lisp only for web applications, accounting software  and other real
> > > staff.

> > That's just what we want you to think till the robots take over.

> And that will be ?  Insert year____

Oh, you'll find out.....

> > Seriously, AI didn't go away, it took a serious kicking, rid itself of
> > some of it's old baggage (some good,some bad)* and re-branded itself
> > as machine learning.

> Data mining perhaps. It's all written in Java.

Meh, I'm not sure I'd count data mining as machine learning, but I
suppose the more sophisticated of it must be.
The computer vision used in scene understanding, generating 3-d models
from still images or self-parking cars might be better examples.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 18 2007, 4:10 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Mon, 18 Jun 2007 08:10:13 -0000
Local: Mon, Jun 18 2007 4:10 am
Subject: Re: Where to start in LISP?
On Jun 16, 6:29 pm, Chris Russell <christopher.m.russ...@gmail.com>
wrote:

Clustering,rules generarting expert systems, pattern matching,  fuzzy-
logic, genetic algorithms  .. anything of those sounds familiar ? All
of those comes even  in a free for learning purposes application like
WEKA.

> The computer vision used in scene understanding, generating 3-d models
> from still images or self-parking cars might be better examples.

I'm too lazy to search but I'll bet again on Java for all of above.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Russell  
View profile  
 More options Jun 18 2007, 6:05 am
Newsgroups: comp.lang.lisp
From: Chris Russell <christopher.m.russ...@gmail.com>
Date: Mon, 18 Jun 2007 10:05:30 -0000
Local: Mon, Jun 18 2007 6:05 am
Subject: Re: Where to start in LISP?
> > > > Seriously, AI didn't go away, it took a serious kicking, rid itself of
> > > > some of it's old baggage (some good,some bad)* and re-branded itself
> > > > as machine learning.

> > > Data mining perhaps. It's all written in Java.

> > Meh, I'm not sure I'd count data mining as machine learning, but I
> > suppose the more sophisticated of it must be.

> Clustering,rules generarting expert systems, pattern matching,  fuzzy-
> logic, genetic algorithms  .. anything of those sounds familiar ?

Yes, but its somewhat disorientating. I've no idea why you're
classifying pattern matching and the vast majority of clustering as
AI, and I assumed that fuzzy logic and expert systems were dead and
gone.

> > The computer vision used in scene understanding, generating 3-d models
> > from still images or self-parking cars might be better examples.

> I'm too lazy to search but I'll bet again on Java for all of above.

Largely matlab and c[++] when people care about speed or hate matlab.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 18 2007, 7:46 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Mon, 18 Jun 2007 04:46:10 -0700
Local: Mon, Jun 18 2007 7:46 am
Subject: Re: Where to start in LISP?
On Jun 18, 12:05 pm, Chris Russell <christopher.m.russ...@gmail.com>
wrote:
> > > > > Seriously, AI didn't go away, it took a serious kicking, rid itself of
> > > > > some of it's old baggage (some good,some bad)* and re-branded itself
> > > > > as machine learning.

> > > > Data mining perhaps. It's all written in Java.

> > > Meh, I'm not sure I'd count data mining as machine learning, but I
> > > suppose the more sophisticated of it must be.

> > Clustering,rules generarting expert systems, pattern matching,  fuzzy-
> > logic, genetic algorithms  .. anything of those sounds familiar ?

> Yes, but its somewhat disorientating. I've no idea why you're
> classifying pattern matching and the vast majority of clustering as
> AI,

Yes those might be left out.

>and I assumed that fuzzy logic and expert systems were dead and gone.

Obviously not, there's big money involved.

> > > The computer vision used in scene understanding, generating 3-d models
> > > from still images or self-parking cars might be better examples.

> > I'm too lazy to search but I'll bet again on Java for all of above.

> Largely matlab and c[++] when people care about speed or hate matlab.

SPSS (2nd anfter SAS) has Python scripting built in. I wonder what's
Gauss written in?

Slobodan Blazeski


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Russell  
View profile  
 More options Jun 18 2007, 9:24 am
Newsgroups: comp.lang.lisp
From: Chris Russell <christopher.m.russ...@gmail.com>
Date: Mon, 18 Jun 2007 13:24:38 -0000
Local: Mon, Jun 18 2007 9:24 am
Subject: Re: Where to start in LISP?
On 18 Jun, 12:46, fireblade <slobodan.blaze...@gmail.com> wrote:

> On Jun 18, 12:05 pm, Chris Russell <christopher.m.russ...@gmail.com>
> >and I assumed that fuzzy logic and expert systems were dead and gone.

> Obviously not, there's big money involved.

Cool, what are they being used for?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fireblade  
View profile  
 More options Jun 18 2007, 10:15 am
Newsgroups: comp.lang.lisp
From: fireblade <slobodan.blaze...@gmail.com>
Date: Mon, 18 Jun 2007 07:15:56 -0700
Local: Mon, Jun 18 2007 10:15 am
Subject: Re: Where to start in LISP?
On Jun 18, 3:24 pm, Chris Russell <christopher.m.russ...@gmail.com>
wrote:

> On 18 Jun, 12:46, fireblade <slobodan.blaze...@gmail.com> wrote:

> > On Jun 18, 12:05 pm, Chris Russell <christopher.m.russ...@gmail.com>
> > >and I assumed that fuzzy logic and expert systems were dead and gone.

> > Obviously not, there's big money involved.

> Cool, what are they being used for?

Discovery of patterns hidden in large databases(warehouses).
Did I mentioned neural networks? No ? Those too.
Here's the way it goes:
1. (Naive) Bayesian first
2. Clustering second
3. Fuzzy logic third
4. Neural networks fourth.(hardest patterns to use)

There is also genetic algorithms used but they are more of a hm search
techniques.

Slobodan Blazeski


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rob St. Amant  
View profile  
 More options Jun 18 2007, 2:18 pm
Newsgroups: comp.lang.lisp
From: stam...@ncsu.edu (Rob St. Amant)
Date: Mon, 18 Jun 2007 14:18:56 -0400
Local: Mon, Jun 18 2007 2:18 pm
Subject: Re: Where to start in LISP?

Chris Russell <christopher.m.russ...@gmail.com> writes:
> On 18 Jun, 12:46, fireblade <slobodan.blaze...@gmail.com> wrote:
>> On Jun 18, 12:05 pm, Chris Russell <christopher.m.russ...@gmail.com>

>> >and I assumed that fuzzy logic and expert systems were dead and gone.

>> Obviously not, there's big money involved.

> Cool, what are they being used for?

As for expert systems, my understanding is that they've gone
mainstream in some areas, such as tax planning, which seems like a
natural match.  (I think I learned this tidbit a few years ago during
a conversation with Ed Feigenbaum, who's in a position to know this
sort of thing.)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 29   Newer >
« Back to Discussions « Newer topic     Older topic »