Search the web
Sign In
New User? Sign Up
openbeagle · Open BEAGLE
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 486 - 515 of 1467   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
486
I was really far into debt. Like Most I was in Financial dispair. I could not seem to get ahead no matter how hard I tried. Untill I found this place. ...
cgfcgh_r2
Offline Send Email
Jun 4, 2004
11:07 pm
487
... What a cheeky thing to write! "This email was sent because you joined our group". Unbelievable!!!...
Matthew Walker
mattgwwalker
Offline Send Email
Jun 5, 2004
12:18 am
488
Well, this is a special kind of spam. The people behind it took the time to register to the group to be able to send it. On my side, I will take the time to...
Christian Gagne
raspingoo
Offline Send Email
Jun 5, 2004
3:20 pm
489
i'm a c++ newbie so bear with me. it looks to me like OpenBeagle lets me define functions, like "Addition" and its up to me then to implement that function. Is...
charlesmcallister
charlesmcall...
Offline Send Email
Jun 10, 2004
7:05 pm
490
... You are problably about primitives used in GP. Each primitive in the primitives set is defined in a C++ class. You can pretty easily define your own...
Christian Gagne
raspingoo
Offline Send Email
Jun 10, 2004
7:13 pm
491
Hello, I'm trying to make an operator which takes a GP Tree and deletes a node with its subtrees. For a tree: <Fun1> <Fun2> <Fun1> <Fun3><term1/></Fun3> ...
Ewa
fklgp
Offline Send Email
Jun 16, 2004
1:10 pm
492
... This is correct but incomplete. After subtree deletion, you will need to update the subtree size value of the nodes upward, the subtree size value of the...
Christian Gagne
raspingoo
Offline Send Email
Jun 16, 2004
2:14 pm
493
Hello, I have a problem. I used my own primitives in GP and I'd like to get access to Node structure in method: execute(GP::Datum& outResult, GP::Context&...
Ewa
fklgp
Offline Send Email
Jun 16, 2004
4:22 pm
494
... I am not sure what you are looking for here. But if you want to access to the primitive associated to a node, you are almost there, you need to get the...
Christian Gagne
raspingoo
Offline Send Email
Jun 16, 2004
4:28 pm
495
Hello, Wednesday, June 16, 2004, 6:28:30 PM, you wrote: ... CG> I am not sure what you are looking for here. But if you want to access CG> to the primitive...
Ewa
fklgp
Offline Send Email
Jun 16, 2004
4:56 pm
496
... With GP::Context::getCallStackTop() you will get access to the node index in tree of the actual primitives executed. This is what you are looking for, as I...
Christian Gagne
raspingoo
Offline Send Email
Jun 16, 2004
5:22 pm
497
Is the following possible: class d_boolvec { public: std::vector<bool> val; std::vector<bool> def; } typedef Beagle::WrapperT< d_boolvec > TriBoolVec; I tried...
iancoll_imperial
iancoll_impe...
Offline Send Email
Jun 19, 2004
7:41 pm
498
Hi! I don't see what can be the problem here. I tried you code in an example and I was able to compile on VS.Net 2003 without any problem (though after adding...
Christian Gagne
raspingoo
Offline Send Email
Jun 19, 2004
9:12 pm
499
I had really high interest rates on my home loan. I saved thousands of dollars on home payments. And you can too. Interest rates are as low as can be, And Yes...
tzbyry249
Offline Send Email
Jun 23, 2004
4:04 am
500
Yahoo and Yahoogroups administrators: The following e-mail is clearly a act of spam of a yahoo user against a yahoogroups mailing list. Please proceed...
Christian Gagne
raspingoo
Offline Send Email
Jun 23, 2004
12:28 pm
501
Hello everyone, I changed the settings of the mailing list so that the first message of a new member will need to be approved by me before being sent to ...
Christian Gagne
raspingoo
Offline Send Email
Jun 23, 2004
5:22 pm
502
Thanks Christian, Since you'll be the only one taking the spam. I always get so excited when I see a post on this group it's a let down when it's just spam....
Robert Zaleski
rzaleski81
Offline Send Email
Jun 24, 2004
1:39 pm
503
Hi! I've just released version 2.1.4 of Open BEAGLE. this version is mainly a minor features addition, with support for weighted GP primitives sets, HFC...
Christian Gagne
raspingoo
Offline Send Email
Jul 5, 2004
1:55 pm
504
Hello all, Since the release of Distributed BEAGLE 0.8 one month ago, more than 50 persons downloaded it. We hope you are enjoying Distributed BEAGLE. We are...
Marc Dubreuil
mdubreuilus
Offline Send Email
Jul 8, 2004
7:15 pm
505
Hi. I'm planning on using OpenBeagle to implement several Neural Network training schemes. I want to start with a simple feedforward net, fixed network...
Tuglat
tuglatt
Offline Send Email
Jul 13, 2004
2:37 pm
506
... I am not aware that anyone use Open BEAGLE to evolve weights of neural nets. But as far as you have a good NN C++ class, it might not be very difficult to...
Christian Gagne
raspingoo
Offline Send Email
Jul 13, 2004
5:01 pm
507
Hello, I would like to define my own PG operators and I wonder how individuals, called in mutate(Beagle::Individual& ioIndividual, Beagle::Context& ioContext) ...
Ewa
fklgp
Offline Send Email
Jul 20, 2004
12:17 pm
508
Hi Ewa, ... The indpb parameter indicates the probability of each individual to be choosen for mutation in a population. The selection of mutated is random,...
Christian Gagne
raspingoo
Offline Send Email
Jul 20, 2004
12:40 pm
509
Hi Tim, ... It's both. To differentiate between an evolver and a cruncher, Distributed BEAGLE use configuration files. For all examples, they are located in...
Marc Dubreuil
mdubreuilus
Offline Send Email
Jul 20, 2004
2:25 pm
510
Hello, I'm writing my own PG crossover operator and I need to make my own selection of individuals. I defined a class: class MyCrossoverOp : public...
Ewa
fklgp
Offline Send Email
Jul 22, 2004
1:03 pm
511
Hi Ewa, This seems a weird problem for me. First be sure to scope the arguments of MyCrossoverOp::operate to the good deme and context types, i.e. virtual void...
Christian Gagne
raspingoo
Offline Send Email
Jul 22, 2004
1:40 pm
512
Hello, Thursday, July 22, 2004, 3:39:43 PM, you wrote: CG> This seems a weird problem for me. First be sure to scope the arguments CG> of...
Ewa
fklgp
Offline Send Email
Jul 23, 2004
7:36 am
513
Hi everyone! I just released version 2.1.5 of Open BEAGLE. This new version comes with some small improvements and several bug fixes compared to previous ...
Christian Gagne
raspingoo
Offline Send Email
Aug 3, 2004
8:06 pm
514
Hi Christian, I'm having a problem with some evolutionary runs and would like to know some per-generation statistics on the use of each primitive. In each run...
Matthew Walker
mattgwwalker
Offline Send Email
Aug 10, 2004
6:56 am
515
Hello, Is it possible to add range constraints to real valued parameters? I have two parameters (x, y), which have the constraints 0 <= x <= 90 10 <= y <= 90 ...
dgstox
Offline Send Email
Aug 10, 2004
1:11 pm
Messages 486 - 515 of 1467   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