Search the web
Sign In
New User? Sign Up
neat · NEAT Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2862 - 2891 of 4897   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2862
Hey, Why it is that when NEAT (or maybe just sharpNEAT, what I'm looking at) runs networks, the input neurons' signals don't get changed even though there are...
Richard Gong
gongrichard
Offline Send Email
Dec 2, 2006
6:37 pm
2863
I - PREMISE: NEAT in it's present state is metaphorically the wheel. In it's fundamental form, it was useful for various tasks. But the greater utility was...
afcarl2
Offline Send Email
Dec 2, 2006
9:15 pm
2864
... That's a general feature of NEAT, at least most implementations. The input neurons are different from other neurons in that their only role is to emit ...
Philip Tucker
tucker0171
Offline Send Email
Dec 2, 2006
9:54 pm
2865
... There shouldn't be any connections going *to* input nodes, only from them. If you are seeing such connections then that is a bug. The input neurons in...
Colin Green
alienseedpod
Offline Send Email
Dec 2, 2006
11:38 pm
2866
Hi Oliver There isn't a UNIX based run script that comes with neat4j, it's on my todo list. The best thing to do is convert the batch files into shell ...
Matt Simmerson
easablade
Offline Send Email
Dec 3, 2006
7:16 pm
2867
Hi Oliver, I've converted the two batch files - xor_train.bat and xor_test.bat for my Slack box. They are running fairly okay. I guess they should be okay for...
Mozaherul Hoque Abul ...
mozaher
Offline Send Email
Dec 4, 2006
1:29 pm
2868
Hi Richard. It is possible to combine NEAT with back-prop, but I don't know how. I don't think that this will bring any benefit at all, since NEAT ...
petar_chervenski
petar_cherve...
Offline Send Email
Dec 4, 2006
1:57 pm
2869
Hello there. I am using a modified version of the rtNEAT code release, to evolve roving eyes that identify grayscale images. It is very similar to the active...
petar_chervenski
petar_cherve...
Offline Send Email
Dec 4, 2006
2:12 pm
2870
Since this is the second question that's really more about C# programming than NEAT, please tell me if it's inappropriate to ask on this forum... If not,...
skitherock
Offline Send Email
Dec 5, 2006
4:51 am
2871
Yeah, I found it interesting to evolve a NN that would be better at learning, so I did some experiments on it with BackProp and NN learning to graph...
cpchristenson
Online Now Send Email
Dec 5, 2006
3:24 pm
2872
I need urgent help on how to implement NEAT for assembly line balancing problem....
Asil Alkaya
asilalkaya
Offline Send Email
Dec 6, 2006
8:48 am
2873
Tell us about the problem first... I don't know anything about assembly lines and stuff. Peter...
petar_chervenski
petar_cherve...
Offline Send Email
Dec 6, 2006
9:58 am
2874
Please find the below suggestions regarding formats for recursive NEAT: enum functype { SIGMOID = 0, EMBEDDEDGENOME = 1, EMBEDDEDPOPULATION = 2 }; Starting...
afcarl2
Offline Send Email
Dec 7, 2006
3:13 am
2875
Hi I'm fairly new to NEAT. I'm thinking of writing my own NEAT implementation from scratch, rather than modify one of the existing releases. The main reasons...
aimike002
Offline Send Email
Dec 10, 2006
8:07 pm
2876
Here's a few pointers: -Debug every function as soon as you create it. For exampe, when you write mutate_add_node, apply it to some dummy genomes and make ...
Kenneth Stanley
kenstanley01
Offline Send Email
Dec 11, 2006
6:16 am
2877
Ken, Thanks for the good advice. My idea to implement a delay in the firing of a node is simply to allow NEAT to insert a special node type with a single input...
aimike002
Offline Send Email
Dec 11, 2006
11:26 am
2878
What do you thing about the pros and cons of NEAT and CC (Cascade Correlation)? Why use one or another? Links about CC: ...
Rafael C.P.
kuraminhabr
Offline Send Email
Dec 11, 2006
3:00 pm
2879
Yeah, I read about Cascade Correlation for the first time in a class this semester. It seems like a good early step in algorithms for exploring good ...
Derek James
blue5432
Offline Send Email
Dec 11, 2006
5:20 pm
2880
There are variations with recurrence and other things, they're on the first link I've posted. But at a first glance, I agree that NEAT is more powerfull (by...
Rafael C.P.
kuraminhabr
Offline Send Email
Dec 11, 2006
5:54 pm
2881
Hi Mike, yes I think that's reasonable. I haven't seen such a node attempted before, but it will be interesting to see if it serves a useful purpose. ken ... ...
Kenneth Stanley
kenstanley01
Offline Send Email
Dec 12, 2006
5:03 am
2882
I think a significant difference is that CC is geared more naturally to supervised training problems. That is, examples must be presented to the CC network as...
Kenneth Stanley
kenstanley01
Offline Send Email
Dec 12, 2006
5:11 am
2883
... Or to take it to the logical (?) extreme: write a piece of test code that will show the code to be working before you actually write the code. That way...
Mike Woodhouse
mikewoodhouse
Offline Send Email
Dec 12, 2006
9:45 am
2884
... this ... exploring good ... something ... stagnates you ... problem or ... There was something of a religious conflict about a decade back between the...
Mike Woodhouse
mikewoodhouse
Offline Send Email
Dec 12, 2006
9:55 am
2885
Ken, Two related questions: a) Would it make sense to implement last_activation in NNode as a vector and utilize a trait to evolve how many steps a delay is ...
afcarl2
Offline Send Email
Dec 12, 2006
11:43 pm
2886
Hello all- I am seeking a recommendation for the equivalent of a neural networks for dummies book. I have been doing grad research in evolutionary computation ...
Jeff Clune
jeffreyclune
Offline Send Email
Dec 13, 2006
8:49 pm
2887
Hi. I want know more about JNEAT, actually I am working in a robot projec, and I found JNEAT an interesting option, but I dont know how to use it. So if you...
Camilo Giraldo Jarami...
cami_gira
Offline Send Email
Dec 14, 2006
1:13 am
2888
Jeff, I highly recommend Blondie24 by David Fogel. It is an introduction to neural networks, GAs, and using the two together. It's also a good introduction...
Derek James
blue5432
Offline Send Email
Dec 14, 2006
5:37 am
2889
Thanks for the suggestion. Does it take you through enough of the details of the various learning mechanisms (e.g. backprop) to really understand how they work...
Jeff Clune
jeffreyclune
Offline Send Email
Dec 14, 2006
6:20 am
2890
PS. If anyone knows of a good web tutorial instead I could also print that out and take it with me. Thanks. Cheers, Jeff Clune Digital Evolution Lab ...
Jeff Clune
jeffreyclune
Offline Send Email
Dec 14, 2006
7:10 am
2891
Hi Jeff, for the past few months I've been catching up on the NN topic. I found a great book by Hagan, Demuth and Beale, "Neural Network Design". They go...
Aleks
siliconcube
Offline Send Email
Dec 14, 2006
7:33 am
Messages 2862 - 2891 of 4897   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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