Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

aima-talk · AI: A Modern Approach: Help for the text

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 549 - 578 of 946   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#549 From: Paul Hsueh-Min Chang <avatar@...>
Date: Sat Sep 24, 2005 12:45 pm
Subject: Re: Digest Number 303
avat312
Send Email Send Email
 
I will try to make some clarifications below:

> While they haven't spelled it out in detail, I think
> they're using a simple logic system and definition of
> "consistent".  In other words, they're not trying to
> allow for an "agent belief" representation where we
> acknowledge that beliefs might be wrong.  Instead, if
> you assert a sentance it must be true or you've
> introduced a contradiction.

Maybe our sources are different. AFAIK a contradiction is the negation
of a tautology (P. Tidman and H. Kahane, Logic and Philosophy: A Modern
Introduction, 8th edition, p48). For example, p^~p is a contradiction.
So when I assert a contingently false sentence whose truth depends on
the world, I introduce no contradiction. But maybe our definitions of
contradiction differ.

> If we take 3 sentances:
>
> A = B.
> B = C.
> A != C.
>
> If we try to assert all three sentances, we cannot do
> it without creating a contradiction.  Since this is
> the definition of "consistency", they would say that
> we cannot "consistently" assert all three sentances,
> since doing so would introduce a contradiction.

It is true that we would introduce inconsistency, but we would not
introduce a contradiction. Of course, any set of sentences that contains
any contradictory sentence is inconsistent, but not vice versa.

> In this case, as an agent **I** can consistently
> assert the sentance "Agent A cannot assert this
> sentance without being wrong" without introducing a
> contradiction.  However if Agent A tries to assert the
> same sentance, he runs into a problem.  If he asserts
> it as true and is right, then the sentance is false,
> so he's wrong.

I know what you are trying to say, but that I don't think we are talking
about the same thing. The authors clearly intend to show two things:
1. The sentence is a tautology (i.e. necessarily true).
2. Yet, J. R. Lucas cannot assert it.
They offer two arguments to show (1). What I do not understand is the
their second argument to show (1). You are talking about (2), which I
find no problem.

> But the whole point of the illustration is simply to
> show that **sometimes** one agent is unable to
> assert/know/do things that another agent can, but that
> doesn't automatically imply that agent is inferior,
> it's inability to assert/know/do may be related to the
> specific situation.

I do understand the point; it is simply that particular argument (the
one on p950 in parentheses) that confuses me. As a philosophical
treatment, I think the chapter should reasonably be taken literally, but
when I do so, I cannot make sense of that particular argument.

Paul

#550 From: "akki582" <akki582@...>
Date: Sat Sep 24, 2005 5:14 pm
Subject: Answers
akki582
Send Email Send Email
 
Hi,
   could anyone plz let me know the link to the answers of the
exercise
of this book

#551 From: akki malhotra <akki582@...>
Date: Sat Sep 24, 2005 5:30 pm
Subject: answers
akki582
Send Email Send Email
 
hi,
cud anyone plz tell me d link to the answers of d exercises of this book


Yahoo! for Good
Click here to donate to the Hurricane Katrina relief effort.

#552 From: "lwudong" <wudongs@...>
Date: Mon Sep 26, 2005 7:32 am
Subject: about A* search
lwudong
Send Email Send Email
 
In page97, line 7:
The restriction is to choose an h function that never overestimates
the cost to reach the goal. Such an h is called an admissible
heuristic. Admissible heuristics are by nature optimistic, because
they think the cost of solving the problem is less than it actually is.

Can anyone give me more explanation why it always gets the optimial
result when it never overestimates the total cost.

#553 From: mohammad assarian <assarian_m@...>
Date: Mon Sep 26, 2005 8:14 pm
Subject: Re: about A* search
assarian_m
Send Email Send Email
 
If we are at node n and my goals are in t1,t2,.... tn. The most aware way from n to Ti shows with H* but we have an estimate of future that we shows with H and the relation between H and H* is H<H* that means our aware to the rest of way is less than the real aware.You can read Artificial Intelligenc book of Nillson .

M.Assarian
lwudong <wudongs@...> wrote:
In page97, line 7:
The restriction is to choose an h function that never overestimates
the cost to reach the goal. Such an h is called an admissible
heuristic. Admissible heuristics are by nature optimistic, because
they think the cost of solving the problem is less than it actually is.

Can anyone give me more explanation why it always gets the optimial
result when it never overestimates the total cost.





Yahoo! for Good
Click here to donate to the Hurricane Katrina relief effort.

#554 From: The Geek <guihergeek61@...>
Date: Mon Sep 26, 2005 10:02 pm
Subject: Re: about A* search
guihergeek61
Send Email Send Email
 
I think my version is different from yours, but I
assume you're talking about the A* search algorithm.

The proof is in the book a page or so later, but  look
at it the other way for a second - if the path
estimate were sometimes too high, then based on the
inflated estimate you might ignore a path that would
have turned out to have a "short cut" in it.  But by
guaranteeing that the actual cost will always be more
than your estimate, you're guaranteed never to ignore
a short cut.

To put it another way, with an admissible heuristic
any unexplored path is guaranteed to be worse than or
equal to it's estimate - never better.  Thus when you
actually explore a path, you're guaranteed that it's
cost will only get worse.  So if you've found an
actual path solution that's equal to or better than
the best unexplored path estimates, the actual path
you've found is guaranteed to be the best because the
unexplored paths can only get more costly when they're
explored.

I hope that made sense.

Rob G.

--- lwudong <wudongs@...> wrote:

> In page97, line 7:
> The restriction is to choose an h function that
> never overestimates
> the cost to reach the goal. Such an h is called an
> admissible
> heuristic. Admissible heuristics are by nature
> optimistic, because
> they think the cost of solving the problem is less
> than it actually is.
>
> Can anyone give me more explanation why it always
> gets the optimial
> result when it never overestimates the total cost.
>
>
>
>
>




__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

#555 From: The Geek <guihergeek61@...>
Date: Tue Sep 27, 2005 1:09 pm
Subject: Re: Digest Number 303
guihergeek61
Send Email Send Email
 
I think the discussion all boils down to the
definition of "consistent" and "contradiction".  I was
kind of hoping one of the authors would chime in at
some point to save me, but...  :-)  On page 137 they
define consistency in reference to CSP problems as "an
assignment that does not violate any constraints".
That was the reason for my A,B,C example - looking at
it as if it were a CSP.

Their argument assumes the sentance must either be
"true" or "false", (no quantuum physics or "unknown"
values allowed) and hinges on the
belief/assumption/fact one cannot "consistently"
assert that a sentance is true if it can be shown to
be false.  If you buy into that, then their statement
follows naturally - if the sentance was false, then he
could not consistently assert it to be true, which
would therefore make the sentance true - a
contradiction since we assigned a value of "false" to
the sentance at the beginning.  The only way you can
assign a value to the sentance and have everything
hold together is if you assume it's true, which then
implies that everyone else can assert it without a
problem, but he cannot.

But, at this point I don't think we're going to make
any headway.  Since they didn't define the logic
system they're using, we can't really do anything
formal.

Thanks for the interesting discussion.

Rob G.


--- Paul Hsueh-Min Chang <avatar@...>
wrote:

> I will try to make some clarifications below:
>
> > While they haven't spelled it out in detail, I
> think
> > they're using a simple logic system and definition
> of
> > "consistent".  In other words, they're not trying
> to
> > allow for an "agent belief" representation where
> we
> > acknowledge that beliefs might be wrong.  Instead,
> if
> > you assert a sentance it must be true or you've
> > introduced a contradiction.
>
> Maybe our sources are different. AFAIK a
> contradiction is the negation
> of a tautology (P. Tidman and H. Kahane, Logic and
> Philosophy: A Modern
> Introduction, 8th edition, p48). For example, p^~p
> is a contradiction.
> So when I assert a contingently false sentence whose
> truth depends on
> the world, I introduce no contradiction. But maybe
> our definitions of
> contradiction differ.
>
> > If we take 3 sentances:
> >
> > A = B.
> > B = C.
> > A != C.
> >
> > If we try to assert all three sentances, we cannot
> do
> > it without creating a contradiction.  Since this
> is
> > the definition of "consistency", they would say
> that
> > we cannot "consistently" assert all three
> sentances,
> > since doing so would introduce a contradiction.
>
> It is true that we would introduce inconsistency,
> but we would not
> introduce a contradiction. Of course, any set of
> sentences that contains
> any contradictory sentence is inconsistent, but not
> vice versa.
>
> > In this case, as an agent **I** can consistently
> > assert the sentance "Agent A cannot assert this
> > sentance without being wrong" without introducing
> a
> > contradiction.  However if Agent A tries to assert
> the
> > same sentance, he runs into a problem.  If he
> asserts
> > it as true and is right, then the sentance is
> false,
> > so he's wrong.
>
> I know what you are trying to say, but that I don't
> think we are talking
> about the same thing. The authors clearly intend to
> show two things:
> 1. The sentence is a tautology (i.e. necessarily
> true).
> 2. Yet, J. R. Lucas cannot assert it.
> They offer two arguments to show (1). What I do not
> understand is the
> their second argument to show (1). You are talking
> about (2), which I
> find no problem.
>
> > But the whole point of the illustration is simply
> to
> > show that **sometimes** one agent is unable to
> > assert/know/do things that another agent can, but
> that
> > doesn't automatically imply that agent is
> inferior,
> > it's inability to assert/know/do may be related to
> the
> > specific situation.
>
> I do understand the point; it is simply that
> particular argument (the
> one on p950 in parentheses) that confuses me. As a
> philosophical
> treatment, I think the chapter should reasonably be
> taken literally, but
> when I do so, I cannot make sense of that particular
> argument.
>
> Paul
>
>
>





__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

#556 From: "savastinuk" <minnie@...>
Date: Tue Sep 27, 2005 11:04 am
Subject: RE: about A* search
ssavasti
Send Email Send Email
 
This makes sense. : )
 
Can you also explain consistent? Or, better yet, INconsistent?
Still talking A*.
 
thanks....
Susan


From: aima-talk@yahoogroups.com [mailto:aima-talk@yahoogroups.com] On Behalf Of The Geek
Sent: Monday, September 26, 2005 6:03 PM
To: aima-talk@yahoogroups.com
Subject: Re: [aima-talk] about A* search

I think my version is different from yours, but I
assume you're talking about the A* search algorithm.

The proof is in the book a page or so later, but  look
at it the other way for a second - if the path
estimate were sometimes too high, then based on the
inflated estimate you might ignore a path that would
have turned out to have a "short cut" in it.  But by
guaranteeing that the actual cost will always be more
than your estimate, you're guaranteed never to ignore
a short cut. 

To put it another way, with an admissible heuristic
any unexplored path is guaranteed to be worse than or
equal to it's estimate - never better.  Thus when you
actually explore a path, you're guaranteed that it's
cost will only get worse.  So if you've found an
actual path solution that's equal to or better than
the best unexplored path estimates, the actual path
you've found is guaranteed to be the best because the
unexplored paths can only get more costly when they're
explored.

I hope that made sense.

Rob G.

--- lwudong <wudongs@...> wrote:

> In page97, line 7:
> The restriction is to choose an h function that
> never overestimates
> the cost to reach the goal. Such an h is called an
> admissible
> heuristic. Admissible heuristics are by nature
> optimistic, because
> they think the cost of solving the problem is less
> than it actually is.
>
> Can anyone give me more explanation why it always
> gets the optimial
> result when it never overestimates the total cost.
>
>
>
>
>



           
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com



#557 From: "savastinuk" <minnie@...>
Date: Tue Sep 27, 2005 12:06 pm
Subject: FW: about A* search
ssavasti
Send Email Send Email
 
Hi again,
 
I apologize for interrupting (can you do that in email?!)
 
Before answering me, the person who asked the original question should be satisfied with the answers. : )
 
Susan


From: savastinuk [mailto:minnie@...]
Sent: Tuesday, September 27, 2005 7:04 AM
To: 'aima-talk@yahoogroups.com'
Subject: RE: [aima-talk] about A* search

This makes sense. : )
 
Can you also explain consistent? Or, better yet, INconsistent?
Still talking A*.
 
thanks....
Susan


From: aima-talk@yahoogroups.com [mailto:aima-talk@yahoogroups.com] On Behalf Of The Geek
Sent: Monday, September 26, 2005 6:03 PM
To: aima-talk@yahoogroups.com
Subject: Re: [aima-talk] about A* search

I think my version is different from yours, but I
assume you're talking about the A* search algorithm.

The proof is in the book a page or so later, but  look
at it the other way for a second - if the path
estimate were sometimes too high, then based on the
inflated estimate you might ignore a path that would
have turned out to have a "short cut" in it.  But by
guaranteeing that the actual cost will always be more
than your estimate, you're guaranteed never to ignore
a short cut. 

To put it another way, with an admissible heuristic
any unexplored path is guaranteed to be worse than or
equal to it's estimate - never better.  Thus when you
actually explore a path, you're guaranteed that it's
cost will only get worse.  So if you've found an
actual path solution that's equal to or better than
the best unexplored path estimates, the actual path
you've found is guaranteed to be the best because the
unexplored paths can only get more costly when they're
explored.

I hope that made sense.

Rob G.

--- lwudong <wudongs@...> wrote:

> In page97, line 7:
> The restriction is to choose an h function that
> never overestimates
> the cost to reach the goal. Such an h is called an
> admissible
> heuristic. Admissible heuristics are by nature
> optimistic, because
> they think the cost of solving the problem is less
> than it actually is.
>
> Can anyone give me more explanation why it always
> gets the optimial
> result when it never overestimates the total cost.
>
>
>
>
>



           
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com



#558 From: mohammad assarian <assarian_m@...>
Date: Tue Sep 27, 2005 8:17 pm
Subject: Re: about A* search
assarian_m
Send Email Send Email
 
Dear Sir.
When the path estimate is too high, this means that your h function has more less
aware(h1) than time your path estimate has more accuracy(h2). when h1 is less than h2 , it is natural that h1 develops nodes as number as h2 and perhaps more in your path.So it is possible for h1 that ignore a short cut path as compared with h2 .On the other hand heuristic fuctions have not guarantee for the best path but in more states act very good.
 
M.Assarian
The Geek <guihergeek61@...> wrote:
I think my version is different from yours, but I
assume you're talking about the A* search algorithm.

The proof is in the book a page or so later, but  look
at it the other way for a second - if the path
estimate were sometimes too high, then based on the
inflated estimate you might ignore a path that would
have turned out to have a "short cut" in it.  But by
guaranteeing that the actual cost will always be more
than your estimate, you're guaranteed never to ignore
a short cut. 

To put it another way, with an admissible heuristic
any unexplored path is guaranteed to be worse than or
equal to it's estimate - never better.  Thus when you
actually explore a path, you're guaranteed that it's
cost will only get worse.  So if you've found an
actual path solution that's equal to or better than
the best unexplored path estimates, the actual path
you've found is guaranteed to be the best because the
unexplored paths can only get more costly when they're
explored.

I hope that made sense.

Rob G.

--- lwudong <wudongs@...> wrote:

> In page97, line 7:
> The restriction is to choose an h function that
> never overestimates
> the cost to reach the goal. Such an h is called an
> admissible
> heuristic. Admissible heuristics are by nature
> optimistic, because
> they think the cost of solving the problem is less
> than it actually is.
>
> Can anyone give me more explanation why it always
> gets the optimial
> result when it never overestimates the total cost.
>
>
>
>
>



           
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com


__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com


#559 From: The Geek <guihergeek61@...>
Date: Tue Sep 27, 2005 5:45 pm
Subject: RE: about A* search
guihergeek61
Send Email Send Email
 
Consistency of heuristics is a little more tricky to
explain, since every consistent one is also
admissible.

If you're not from the U.S., I'll apologize in advance
for the following example....

Lets say you're trying to get from New York to L.A. by
car - forget the fact that it would now cost you a
small fortune to do so.  A consistent heuristic is one
where the estimate to get from New York to L.A. must
be equal to or smaller than the actual cost to get
from New York to any other city **plus** the estimate
to get from that city to L.A.  In other words, if you
drive from New York to Chicago, then estimate the
distance from Chicago to L.A. you're not supposed to
get a smaller answer than your original estimate.  If
you use straight-line distance, it's easy to see this
is consistent.

Admissible heurstics must guarantee the estimate is no
larger than the actual cost turns out to be.
Consistent heuristics must also guarantee the "revised
estimate" (the sum of the actual distance traveled so
far plus the estimate of what you've got remaining)
never goes down as you explore the path.

You have to get kind of goofy to find things that are
admissible but not consistent - taking the
straight-line distance divided by the number of
letters in the city name for example.  The estimate is
guaranteed to be low (since it's always less than the
straight-line distance), and thus is admissible.  When
you start at New York your estimate would be 2400/7 =
342.86.  If you drove 95 miles to Philadelphia, you're
estimate from Philadelphia to L.A. would be 2320 / 12
= 193.33.  Adding that back to the 95 miles you drove
from New York we see that we now think we can get from
New York to L.A. by way of Philadelphia for an
estimated cost of 193.33 + 95 = 288.33, less than our
original estimate of 342.86, thus demonstrating that
the heuristic is not consistent.

Rob G.

--- savastinuk <minnie@...> wrote:

> This makes sense. : )
>
> Can you also explain consistent? Or, better yet,
> INconsistent?
> Still talking A*.
>
> thanks....
> Susan
>
>
>   _____
>
> From: aima-talk@yahoogroups.com
> [mailto:aima-talk@yahoogroups.com] On Behalf
> Of The Geek
> Sent: Monday, September 26, 2005 6:03 PM
> To: aima-talk@yahoogroups.com
> Subject: Re: [aima-talk] about A* search
>
>
> I think my version is different from yours, but I
> assume you're talking about the A* search algorithm.
>
> The proof is in the book a page or so later, but
> look
> at it the other way for a second - if the path
> estimate were sometimes too high, then based on the
> inflated estimate you might ignore a path that would
> have turned out to have a "short cut" in it.  But by
> guaranteeing that the actual cost will always be
> more
> than your estimate, you're guaranteed never to
> ignore
> a short cut.
>
> To put it another way, with an admissible heuristic
> any unexplored path is guaranteed to be worse than
> or
> equal to it's estimate - never better.  Thus when
> you
> actually explore a path, you're guaranteed that it's
> cost will only get worse.  So if you've found an
> actual path solution that's equal to or better than
> the best unexplored path estimates, the actual path
> you've found is guaranteed to be the best because
> the
> unexplored paths can only get more costly when
> they're
> explored.
>
> I hope that made sense.
>
> Rob G.
>
> --- lwudong <wudongs@...> wrote:
>
> > In page97, line 7:
> > The restriction is to choose an h function that
> > never overestimates
> > the cost to reach the goal. Such an h is called an
> > admissible
> > heuristic. Admissible heuristics are by nature
> > optimistic, because
> > they think the cost of solving the problem is less
> > than it actually is.
> >
> > Can anyone give me more explanation why it always
> > gets the optimial
> > result when it never overestimates the total cost.
> >
> >
> >
> >
> >
>
>
>
>
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com
>
>
>
>
>
> SPONSORED LINKS
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+software&w1=Art
>
ificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=Arti
>
ficial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.sig=Z
> -KgstNm21fXWEV4ASPvHQ> intelligence software
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+in+business&w1=
>
Artificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=A
>
rtificial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.si
> g=477uHvbluHUGZv4M3Wsnag> intelligence in business
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence&w1=Artificial+i
>
ntelligence+software&w2=Artificial+intelligence+in+business&w3=Artificial+in
>
telligence&w4=Artificial+intelligence+introduction&c=4&s=150&.sig=LONI6S4JBL
> JohI0gb7t-Ug> intelligence
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+introduction&w1
>
=Artificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=
>
Artificial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.s
> ig=n5dsIRz6BWbukAv5Ru4LcA> intelligence introduction
>
>
>   _____
>
> YAHOO! GROUPS LINKS
>
>
>
> *  Visit your group "aima-talk
> <http://groups.yahoo.com/group/aima-talk> " on the
> web.
>
>
> *  To unsubscribe from this group, send an email to:
>  aima-talk-unsubscribe@yahoogroups.com
>
<mailto:aima-talk-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
>
>
> *  Your use of Yahoo! Groups is subject to the
> Yahoo! Terms of Service
> <http://docs.yahoo.com/info/terms/> .
>
>
>   _____
>
>
>




__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

#560 From: "savastinuk" <minnie@...>
Date: Wed Sep 28, 2005 3:16 am
Subject: RE: about A* search
ssavasti
Send Email Send Email
 
Rob,
 
Thanks so much! This helps me with a homework problem that I was completely stumped on. I'll cite your letter, as our teacher asked us to do if we get help with an answer.
 
Your admissible but inconsistent trip example went right past where I live, near Philadelphia. : )
 
regards,
Susan


From: aima-talk@yahoogroups.com [mailto:aima-talk@yahoogroups.com] On Behalf Of The Geek
Sent: Tuesday, September 27, 2005 1:46 PM
To: aima-talk@yahoogroups.com
Subject: RE: [aima-talk] about A* search

Consistency of heuristics is a little more tricky to
explain, since every consistent one is also
admissible.

If you're not from the U.S., I'll apologize in advance
for the following example....

Lets say you're trying to get from New York to L.A. by
car - forget the fact that it would now cost you a
small fortune to do so.  A consistent heuristic is one
where the estimate to get from New York to L.A. must
be equal to or smaller than the actual cost to get
from New York to any other city **plus** the estimate
to get from that city to L.A.  In other words, if you
drive from New York to Chicago, then estimate the
distance from Chicago to L.A. you're not supposed to
get a smaller answer than your original estimate.  If
you use straight-line distance, it's easy to see this
is consistent.

Admissible heurstics must guarantee the estimate is no
larger than the actual cost turns out to be.
Consistent heuristics must also guarantee the "revised
estimate" (the sum of the actual distance traveled so
far plus the estimate of what you've got remaining)
never goes down as you explore the path.

You have to get kind of goofy to find things that are
admissible but not consistent - taking the
straight-line distance divided by the number of
letters in the city name for example.  The estimate is
guaranteed to be low (since it's always less than the
straight-line distance), and thus is admissible.  When
you start at New York your estimate would be 2400/7 =
342.86.  If you drove 95 miles to Philadelphia, you're
estimate from Philadelphia to L.A. would be 2320 / 12
= 193.33.  Adding that back to the 95 miles you drove
from New York we see that we now think we can get from
New York to L.A. by way of Philadelphia for an
estimated cost of 193.33 + 95 = 288.33, less than our
original estimate of 342.86, thus demonstrating that
the heuristic is not consistent.

Rob G.

--- savastinuk <minnie@...> wrote:

> This makes sense. : )

> Can you also explain consistent? Or, better yet,
> INconsistent?
> Still talking A*.

> thanks....
> Susan
>
>
>   _____ 
>
> From: aima-talk@yahoogroups.com
> [mailto:aima-talk@yahoogroups.com] On Behalf
> Of The Geek
> Sent: Monday, September 26, 2005 6:03 PM
> To: aima-talk@yahoogroups.com
> Subject: Re: [aima-talk] about A* search
>
>
> I think my version is different from yours, but I
> assume you're talking about the A* search algorithm.
>
> The proof is in the book a page or so later, but
> look
> at it the other way for a second - if the path
> estimate were sometimes too high, then based on the
> inflated estimate you might ignore a path that would
> have turned out to have a "short cut" in it.  But by
> guaranteeing that the actual cost will always be
> more
> than your estimate, you're guaranteed never to
> ignore
> a short cut. 
>
> To put it another way, with an admissible heuristic
> any unexplored path is guaranteed to be worse than
> or
> equal to it's estimate - never better.  Thus when
> you
> actually explore a path, you're guaranteed that it's
> cost will only get worse.  So if you've found an
> actual path solution that's equal to or better than
> the best unexplored path estimates, the actual path
> you've found is guaranteed to be the best because
> the
> unexplored paths can only get more costly when
> they're
> explored.
>
> I hope that made sense.
>
> Rob G.
>
> --- lwudong <wudongs@...> wrote:
>
> > In page97, line 7:
> > The restriction is to choose an h function that
> > never overestimates
> > the cost to reach the goal. Such an h is called an
> > admissible
> > heuristic. Admissible heuristics are by nature
> > optimistic, because
> > they think the cost of solving the problem is less
> > than it actually is.
> >
> > Can anyone give me more explanation why it always
> > gets the optimial
> > result when it never overestimates the total cost.
> >
> >
> >
> >
> >
>
>
>
>            
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com
>
>
>
>
>
> SPONSORED LINKS
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+software&w1=Art
>
ificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=Arti
>
ficial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.sig=Z
> -KgstNm21fXWEV4ASPvHQ> intelligence software
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+in+business&w1=
>
Artificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=A
>
rtificial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.si
> g=477uHvbluHUGZv4M3Wsnag> intelligence in business
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence&w1=Artificial+i
>
ntelligence+software&w2=Artificial+intelligence+in+business&w3=Artificial+in
>
telligence&w4=Artificial+intelligence+introduction&c=4&s=150&.sig=LONI6S4JBL
> JohI0gb7t-Ug> intelligence      
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+introduction&w1
>
=Artificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=
>
Artificial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.s
> ig=n5dsIRz6BWbukAv5Ru4LcA> intelligence introduction
>      
>
>   _____ 
>
> YAHOO! GROUPS LINKS
>
>
>      
> *      Visit your group "aima-talk
> <http://groups.yahoo.com/group/aima-talk> " on the
> web.
>  
>
> *      To unsubscribe from this group, send an email to:
>  aima-talk-unsubscribe@yahoogroups.com
>
<mailto:aima-talk-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
>  
>
> *      Your use of Yahoo! Groups is subject to the
> Yahoo! Terms of Service
> <http://docs.yahoo.com/info/terms/> .
>
>
>   _____ 
>
>
>



           
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com



#561 From: shivam shukla <shirohin@...>
Date: Wed Sep 28, 2005 5:34 am
Subject: Re: Digest Number 303
shirohin
Send Email Send Email
 

hey everybody am doing a project on image processing n am using the convolution theorem given in chapter 25.in tht am not able to get an image function.

 it would be a great help for me if anyone could tell wat sort of a function is this image function.

          thanx.


Yahoo! India Matrimony: Find your partner now.

#562 From: "Robin" <rhewitt@...>
Date: Wed Sep 28, 2005 5:41 pm
Subject: Re: Digest Number 303
get_imaginary
Send Email Send Email
 
The index in my edition (2nd) gives only two mentions
of convolution: pg 869 and pg 899. These are in chapter
24, not ch. 25. So I'm not sure what you're looking at.
But in general, when you apply a convolution to an image,
the "image function" is just the pixel value at each
(x,y) location. The value you use will depend on context
- what you want to do. A commonly used value is pixel
brightness. A white pixel has brightness 255, and a black
one has brightness 0. If you're starting from a color
image, you can calculate brightness by averaging the red,
blue, and green values at pixel (x,y).

Here's a good explanation of convolution in an image-
processing context:
http://www.cee.hw.ac.uk/hipr/html/convolve.html

- Robin


--- In aima-talk@yahoogroups.com, shivam shukla <shirohin@y...> wrote:
>
> hey everybody am doing a project on image processing n am using the
convolution theorem given in chapter 25.in tht am not able to get an
image function.
>
>  it would be a great help for me if anyone could tell wat sort of a
function is this image function.
>
>           thanx.
>
>
> ---------------------------------
>  Yahoo! India Matrimony: Find your partner now.

#563 From: Paul Hsueh-Min Chang <avatar@...>
Date: Thu Sep 29, 2005 12:52 pm
Subject: Re: Digest Number 303
avat312
Send Email Send Email
 
I doubt if I can make the issues more clear, but I'll try.

I still think the main problem lies in the phrase "if it were false". If
a proposition in a set is "shown" to be false from observation rather
than through logical proof, the proposition does not make the set
inconsistent, because it *could* be true in some other possible world.
If I recall correctly, that is how logical possibility is defined. Your
ABC example is indeed inconsistent because it can be proved without
observing the world state that the set contains at least one false sentence.

So, according to the defintion of consistency, the authors mostly likely
do not mean "if it were provably false". Otherwise, the argument would
be employing a tautologus sentence: "if the sentence were provably
false, then he (or in fact, anyone) could not consistently assert it to
be true". One derives nothing from a tautology

But, without the word "provably", I don't see how the contingent truth
or falsity of a sentence have anything to do with consistency, for
reasons above. Furthermore, it seems to me that J. R. Lucas just cannot
consistently assert the sentence anyway, whether it is true or false.

I do agree that we can do nothing formal without identifying the
underlying logic system. Perhaps somebody can enlighten us?

  > Thanks for the interesting discussion.
Thank you.

Paul



The Geek wrote:

> I think the discussion all boils down to the
> definition of "consistent" and "contradiction".  I was
> kind of hoping one of the authors would chime in at
> some point to save me, but...  :-)  On page 137 they
> define consistency in reference to CSP problems as "an
> assignment that does not violate any constraints".
> That was the reason for my A,B,C example - looking at
> it as if it were a CSP.
>
> Their argument assumes the sentance must either be
> "true" or "false", (no quantuum physics or "unknown"
> values allowed) and hinges on the
> belief/assumption/fact one cannot "consistently"
> assert that a sentance is true if it can be shown to
> be false.  If you buy into that, then their statement
> follows naturally - if the sentance was false, then he
> could not consistently assert it to be true, which
> would therefore make the sentance true - a
> contradiction since we assigned a value of "false" to
> the sentance at the beginning.  The only way you can
> assign a value to the sentance and have everything
> hold together is if you assume it's true, which then
> implies that everyone else can assert it without a
> problem, but he cannot.
>
> But, at this point I don't think we're going to make
> any headway.  Since they didn't define the logic
> system they're using, we can't really do anything
> formal.
>
> Thanks for the interesting discussion.
>
> Rob G.
>
>
> --- Paul Hsueh-Min Chang <avatar@...>
> wrote:
>
> > I will try to make some clarifications below:
> >
> > > While they haven't spelled it out in detail, I
> > think
> > > they're using a simple logic system and definition
> > of
> > > "consistent".  In other words, they're not trying
> > to
> > > allow for an "agent belief" representation where
> > we
> > > acknowledge that beliefs might be wrong.  Instead,
> > if
> > > you assert a sentance it must be true or you've
> > > introduced a contradiction.
> >
> > Maybe our sources are different. AFAIK a
> > contradiction is the negation
> > of a tautology (P. Tidman and H. Kahane, Logic and
> > Philosophy: A Modern
> > Introduction, 8th edition, p48). For example, p^~p
> > is a contradiction.
> > So when I assert a contingently false sentence whose
> > truth depends on
> > the world, I introduce no contradiction. But maybe
> > our definitions of
> > contradiction differ.
> >
> > > If we take 3 sentances:
> > >
> > > A = B.
> > > B = C.
> > > A != C.
> > >
> > > If we try to assert all three sentances, we cannot
> > do
> > > it without creating a contradiction.  Since this
> > is
> > > the definition of "consistency", they would say
> > that
> > > we cannot "consistently" assert all three
> > sentances,
> > > since doing so would introduce a contradiction.
> >
> > It is true that we would introduce inconsistency,
> > but we would not
> > introduce a contradiction. Of course, any set of
> > sentences that contains
> > any contradictory sentence is inconsistent, but not
> > vice versa.
> >
> > > In this case, as an agent **I** can consistently
> > > assert the sentance "Agent A cannot assert this
> > > sentance without being wrong" without introducing
> > a
> > > contradiction.  However if Agent A tries to assert
> > the
> > > same sentance, he runs into a problem.  If he
> > asserts
> > > it as true and is right, then the sentance is
> > false,
> > > so he's wrong.
> >
> > I know what you are trying to say, but that I don't
> > think we are talking
> > about the same thing. The authors clearly intend to
> > show two things:
> > 1. The sentence is a tautology (i.e. necessarily
> > true).
> > 2. Yet, J. R. Lucas cannot assert it.
> > They offer two arguments to show (1). What I do not
> > understand is the
> > their second argument to show (1). You are talking
> > about (2), which I
> > find no problem.
> >
> > > But the whole point of the illustration is simply
> > to
> > > show that **sometimes** one agent is unable to
> > > assert/know/do things that another agent can, but
> > that
> > > doesn't automatically imply that agent is
> > inferior,
> > > it's inability to assert/know/do may be related to
> > the
> > > specific situation.
> >
> > I do understand the point; it is simply that
> > particular argument (the
> > one on p950 in parentheses) that confuses me. As a
> > philosophical
> > treatment, I think the chapter should reasonably be
> > taken literally, but
> > when I do so, I cannot make sense of that particular
> > argument.
> >
> > Paul

#564 From: "oldatum" <oldatum@...>
Date: Sun Oct 2, 2005 5:30 am
Subject: Expert system
oldatum
Send Email Send Email
 
anyone can give me some clues about the up-to-date info about expert
system? Seems this topic has been being faded?

Thanks in advance.

#565 From: Paolo Amoroso <amoroso@...>
Date: Mon Oct 3, 2005 4:20 pm
Subject: Re: Expert system
amoroso_paolo
Send Email Send Email
 
"oldatum" <oldatum@...> writes:

> anyone can give me some clues about the up-to-date info about expert
> system? Seems this topic has been being faded?

I wondered this myself, and posted some notes to my blog:

   Expert systems: what happened in the past decade?
   http://www.paoloamoroso.it/log/050309.html


Paolo
--
Lisp Propulsion Laboratory log - http://www.paoloamoroso.it/log

#566 From: Ivan Villanueva <ivan@...>
Date: Fri Oct 7, 2005 5:55 pm
Subject: artificialidea.com logic package
artificialidea
Send Email Send Email
 
Hello ML,
I'm the guy who's doing an alternative implementation of the algorithms in the
book in Java. I've done a long break but now I've decided to continue with the
project, even with no help :-(

I've just finished the package related to chapter 7.

You can see the documentation in:
http://www.artificialidea.com/my_programs/docs/index.html

If you would like to download all I have done until now:
http://www.artificialidea.com/index.php?page=my_programs

I'd more than appreciate any comment.

Regards,
--
Ivan F. Villanueva B.
The dream of intelligent machines: www.artificialidea.com
Encrypted mail preferred.
GPG Key Id: 3FDBF85F 2004-10-18 Ivan-Fernando Villanueva Barrio

#567 From: Ulit Jaidee <ulitjd@...>
Date: Mon Oct 10, 2005 6:01 am
Subject: Research on Automatic Music Composition Generator
ulitjd
Send Email Send Email
 

Dear everyone:

 

Could anyone please tell me if I would like to do research on Automatic Music Composition Generator, who is the professor in this area and what is the website to focus on?

Thank you for all answers.

 

Best regards,

Jaidee, Mr.


Yahoo! Music Unlimited - Access over 1 million songs. Try it free.

#568 From: Robert Futrelle <futrelle@...>
Date: Mon Oct 10, 2005 2:16 pm
Subject: Re: Research on Automatic Music Composition Generator
bobfutrelle
Send Email Send Email
 
Googling on

automated "music composition" ai

produced about 12,500 page hits.

I think you'll find what you need there,
though I realize there may be someone on this
list who is familiar with the area (I'm not).

("automated" gets more hits than "automatic")

 - Bob Futrelle



Dear everyone:
 
Could anyone please tell me if I would like to do research on Automatic Music Composition Generator, who is the professor in this area and what is the website to focus on?
Thank you for all answers.
 
Best regards,
Jaidee, Mr.
               

Yahoo! Music Unlimited - Access over 1 million songs. Try it free.

YAHOO! GROUPS LINKS



#569 From: "\[3!|_/\\|_" <bilal_hayat_butt@...>
Date: Tue Oct 11, 2005 8:44 am
Subject: RE: about A* search
bilal_hayat_...
Send Email Send Email
 
Does anyone have the implementation of A* search
Of Romania Map or some other
in prolog or any other
reply urgently

savastinuk <minnie@...> wrote:
Rob,
 
Thanks so much! This helps me with a homework problem that I was completely stumped on. I'll cite your letter, as our teacher asked us to do if we get help with an answer.
 
Your admissible but inconsistent trip example went right past where I live, near Philadelphia. : )
 
regards,
Susan


From: aima-talk@yahoogroups.com [mailto:aima-talk@yahoogroups.com] On Behalf Of The Geek
Sent: Tuesday, September 27, 2005 1:46 PM
To: aima-talk@yahoogroups.com
Subject: RE: [aima-talk] about A* search

Consistency of heuristics is a little more tricky to
explain, since every consistent one is also
admissible.

If you're not from the U.S., I'll apologize in advance
for the following example....

Lets say you're trying to get from New York to L.A. by
car - forget the fact that it would now cost you a
small fortune to do so.  A consistent heuristic is one
where the estimate to get from New York to L.A. must
be equal to or smaller than the actual cost to get
from New York to any other city **plus** the estimate
to get from that city to L.A.  In other words, if you
drive from New York to Chicago, then estimate the
distance from Chicago to L.A. you're not supposed to
get a smaller answer than your original estimate.  If
you use straight-line distance, it's easy to see this
is consistent.

Admissible heurstics must guarantee the estimate is no
larger than the actual cost turns out to be.
Consistent heuristics must also guarantee the "revised
estimate" (the sum of the actual distance traveled so
far plus the estimate of what you've got remaining)
never goes down as you explore the path.

You have to get kind of goofy to find things that are
admissible but not consistent - taking the
straight-line distance divided by the number of
letters in the city name for example.  The estimate is
guaranteed to be low (since it's always less than the
straight-line distance), and thus is admissible.  When
you start at New York your estimate would be 2400/7 =
342.86.  If you drove 95 miles to Philadelphia, you're
estimate from Philadelphia to L.A. would be 2320 / 12
= 193.33.  Adding that back to the 95 miles you drove
from New York we see that we now think we can get from
New York to L.A. by way of Philadelphia for an
estimated cost of 193.33 + 95 = 288.33, less than our
original estimate of 342.86, thus demonstrating that
the heuristic is not consistent.

Rob G.

--- savastinuk <minnie@...> wrote:

> This makes sense. : )

> Can you also explain consistent? Or, better yet,
> INconsistent?
> Still talking A*.

> thanks....
> Susan
>
>
>   _____ 
>
> From: aima-talk@yahoogroups.com
> [mailto:aima-talk@yahoogroups.com] On Behalf
> Of The Geek
> Sent: Monday, September 26, 2005 6:03 PM
> To: aima-talk@yahoogroups.com
> Subject: Re: [aima-talk] about A* search
>
>
> I think my version is different from yours, but I
> assume you're talking about the A* search algorithm.
>
> The proof is in the book a page or so later, but
> look
> at it the other way for a second - if the path
> estimate were sometimes too high, then based on the
> inflated estimate you might ignore a path that would
> have turned out to have a "short cut" in it.  But by
> guaranteeing that the actual cost will always be
> more
> than your estimate, you're guaranteed never to
> ignore
> a short cut. 
>
> To put it another way, with an admissible heuristic
> any unexplored path is guaranteed to be worse than
> or
> equal to it's estimate - never better.  Thus when
> you
> actually explore a path, you're guaranteed that it's
> cost will only get worse.  So if you've found an
> actual path solution that's equal to or better than
> the best unexplored path estimates, the actual path
> you've found is guaranteed to be the best because
> the
> unexplored paths can only get more costly when
> they're
> explored.
>
> I hope that made sense.
>
> Rob G.
>
> --- lwudong <wudongs@...> wrote:
>
> > In page97, line 7:
> > The restriction is to choose an h function that
> > never overestimates
> > the cost to reach the goal. Such an h is called an
> > admissible
> > heuristic. Admissible heuristics are by nature
> > optimistic, because
> > they think the cost of solving the problem is less
> > than it actually is.
> >
> > Can anyone give me more explanation why it always
> > gets the optimial
> > result when it never overestimates the total cost.
> >
> >
> >
> >
> >
>
>
>
>            
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com
>
>
>
>
>
> SPONSORED LINKS
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+software&w1=Art
>
ificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=Arti
>
ficial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.sig=Z
> -KgstNm21fXWEV4ASPvHQ> intelligence software
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+in+business&w1=
>
Artificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=A
>
rtificial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.si
> g=477uHvbluHUGZv4M3Wsnag> intelligence in business
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence&w1=Artificial+i
>
ntelligence+software&w2=Artificial+intelligence+in+business&w3=Artificial+in
>
telligence&w4=Artificial+intelligence+introduction&c=4&s=150&.sig=LONI6S4JBL
> JohI0gb7t-Ug> intelligence      
> Artificial
>
<http://groups.yahoo.com/gads?t=ms&k=Artificial+intelligence+introduction&w1
>
=Artificial+intelligence+software&w2=Artificial+intelligence+in+business&w3=
>
Artificial+intelligence&w4=Artificial+intelligence+introduction&c=4&s=150&.s
> ig=n5dsIRz6BWbukAv5Ru4LcA> intelligence introduction
>      
>
>   _____ 
>
> YAHOO! GROUPS LINKS
>
>
>      
> *      Visit your group "aima-talk
> <http://groups.yahoo.com/group/aima-talk> " on the
> web.
>  
>
> *      To unsubscribe from this group, send an email to:
>  aima-talk-unsubscribe@yahoogroups.com
>
<mailto:aima-talk-unsubscribe@yahoogroups.com?subject=Unsubscribe>
>
>  
>
> *      Your use of Yahoo! Groups is subject to the
> Yahoo! Terms of Service
> <http://docs.yahoo.com/info/terms/> .
>
>
>   _____ 
>
>
>



           
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com




[3 ! |_ /\ |_


Yahoo! Music Unlimited - Access over 1 million songs. Try it free.

#570 From: "kmool100" <kmool100@...>
Date: Wed Oct 12, 2005 6:59 am
Subject: answers
kmool100
Send Email Send Email
 
How can we know that our solutions are correct or not ?

#571 From: "saad0105050" <saad0105050@...>
Date: Wed Oct 12, 2005 4:23 pm
Subject: do u have aima exercise solutions?
saad0105050
Send Email Send Email
 
hi there!
  is there any solution to the excercises of aima? like
  chapter by chapter? If there is any on the net, plz let
  it be known, and if anyone has solved any hirself, plz
  let us share.

#572 From: Ivan Villanueva <ivan@...>
Date: Thu Oct 13, 2005 1:40 pm
Subject: Re: about A* search
artificialidea
Send Email Send Email
 
On Tue, Oct 11, 2005 at 01:44:06AM -0700, [3!|_/|_ wrote:
> Does anyone have the implementation of A* search
> Of Romania Map or some other
> in prolog or any other

If by "any other" you mean any other language, yes there are A* implementations
in Lisp, Python and Java on the Aima webpage, and on my homepage in java at:
www.artificialidea.com/index.php?page=my_programs

Regards,
Iván.
--
Ivan F. Villanueva B.
The dream of intelligent machines: www.artificialidea.com
Encrypted mail preferred.
GPG Key Id: 3FDBF85F 2004-10-18 Ivan-Fernando Villanueva Barrio

#573 From: Neil Conway <neilc@...>
Date: Fri Oct 14, 2005 8:19 am
Subject: random walks in an infinite state space
nconway2
Send Email Send Email
 
Page 126 of AIMA, 2nd ed, notes that:

"It is easy to prove that a random walk will eventually find a goal or
complete its exploration, provided that the space is finite."

Here, a footnote continues:

"The infinite case is much more tricky. Random walks are complete on
infinite one-dimensional and two dimensional grids, but not on three
dimensional grids! In the latter case, the probability that the walk
ever returns to the starting point is only about 0.3405."

I was surprised by the claim above (random walks are complete for 1 and
2 dimensions but not for 3). Can anyone explain why this is true?

-Neil

#574 From: Robert Futrelle <futrelle@...>
Date: Fri Oct 14, 2005 11:56 am
Subject: Re: random walks in an infinite state space
bobfutrelle
Send Email Send Email
 
It all began with Polya's 1921 proof:

http://mathworld.wolfram.com/PolyasRandomWalkConstants.html

Then follow the link from there "[Pages Linking Here]"

which has links to discussions of 1-, 2-, and 3-dimensional walks.

   - Bob

_______________________________________________________________
Robert P. Futrelle      | Biological Knowledge Laboratory
     Associate Professor  | College of Computer  and Information
                          |     Science MS WVH202
Office: (617)-373-4239  | Northeastern University
Fax:    (617)-373-5121  | 360 Huntington Ave.
futrelle@...    | Boston, MA 02115
           http://www.ccs.neu.edu/home/futrelle
    http://www.bionlp.org   http://www.diagrams.org

            http://biologicalknowledge.com
         mailto:biologicalknowledge@...
_______________________________________________________________


>Page 126 of AIMA, 2nd ed, notes that:
>
>"It is easy to prove that a random walk will eventually find a goal or
>complete its exploration, provided that the space is finite."
>
>Here, a footnote continues:
>
>"The infinite case is much more tricky. Random walks are complete on
>infinite one-dimensional and two dimensional grids, but not on three
>dimensional grids! In the latter case, the probability that the walk
>ever returns to the starting point is only about 0.3405."
>
>I was surprised by the claim above (random walks are complete for 1 and
>2 dimensions but not for 3). Can anyone explain why this is true?
>
>-Neil
>
>
>
>
>
>YAHOO! GROUPS LINKS
>
>  Visit your group
>"<http://groups.yahoo.com/group/aima-talk>aima-talk" on the web.
>
>  To unsubscribe from this group, send an email to:
>
><mailto:aima-talk-unsubscribe@yahoogroups.com?subject=Unsubscribe>aima-talk-uns\
ubscribe@yahoogroups.com
>
>  Your use of Yahoo! Groups is subject to the
><http://docs.yahoo.com/info/terms/>Yahoo! Terms of Service.


--
_______________________________________________________________
Robert P. Futrelle      | Biological Knowledge Laboratory
     Associate Professor  | College of Computer  and Information
                          |     Science MS WVH202
Office: (617)-373-4239  | Northeastern University
Fax:    (617)-373-5121  | 360 Huntington Ave.
futrelle@...    | Boston, MA 02115
           http://www.ccs.neu.edu/home/futrelle
    http://www.bionlp.org   http://www.diagrams.org

            http://biologicalknowledge.com
         mailto:biologicalknowledge@...
_______________________________________________________________

#575 From: billy peralta <billyperalta@...>
Date: Fri Oct 14, 2005 10:46 pm
Subject: Re: Research on Automatic Music Composition Generator
billyperalta
Send Email Send Email
 
hello
 
well, It is highly possible that the genetic programming is the most apropiate technic.
 
Billy Mark*
 

Robert Futrelle <futrelle@...> escribió:
Googling on

automated "music composition" ai

produced about 12,500 page hits.

I think you'll find what you need there,
though I realize there may be someone on this
list who is familiar with the area (I'm not).

("automated" gets more hits than "automatic")

 - Bob Futrelle



Dear everyone:

 
Could anyone please tell me if I would like to do research on Automatic Music Composition Generator, who is the professor in this area and what is the website to focus on?
Thank you for all answers.

 
Best regards,
Jaidee, Mr.
               

Yahoo! Music Unlimited - Access over 1 million songs. Try it free.

YAHOO! GROUPS LINKS




Correo Yahoo!
Comprueba qué es nuevo, aquí
http://correo.yahoo.es

#576 From: "oldatum" <oldatum@...>
Date: Tue Oct 18, 2005 8:41 am
Subject: another question about the heuristic function
oldatum
Send Email Send Email
 
Hello all,

I met this when I was doing my homework.

Prove that, if the heuristic function h never overestimates by more
than cost c, A* search using h returns a solution whose cost exceeds
that of the optimal solution by no more than c.

This is Question 4.6 from AIMA book. Any hints will be very much
appreciated.

Regards,
odm

#577 From: <pranjalawasthi@...>
Date: Sun Oct 23, 2005 8:51 am
Subject: conditional random fields
pranjalawasthi
Send Email Send Email
 
hi,
     is it true that CRFs require less training data
than other discriminative models.If yes what is the
reason?

Pranjal Awasthi





__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com

#578 From: Jan-Georg Smaus <smaus@...>
Date: Tue Oct 25, 2005 3:26 pm
Subject: pattern databases
jangeorgsmaus
Send Email Send Email
 
Hi everyone,

the book explains pattern databases on page 107 (2nd ed.). It says that it
is currently unknown how how the pattern database approach can be applied
to Rubik's cube. However there is now the work by Korf

@InProceedings{Kor97,
   author = 	 {Richard E. Korf},
   title = 	 {Finding Optimal Solutions to {R}ubik's {C}ube Using
Pattern Databases},
   booktitle = 	 {Proceedings of the 14th National Conference on
Artificial
                   Intelligence and 9th Innovative Applications of
                   Artificial Intelligence Conference},
   pages =  {700-705},
   year =  1997,
   publisher =  {MIT Press}
}

which addresses this question. It would be nice if the authors could
mention this work.

Cheers,
Jan Smaus, Freiburg

Messages 549 - 578 of 946   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help