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 612 - 641 of 1467   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
612
Hi, Has anyone successfully compiled openbeagle using intel's c++ compiler? I am attempting to do so by running: /configure --enable-optimization CC=icc...
graamone
Offline Send Email
Mar 2, 2005
9:26 pm
613
Hello, I tried quickly to compile a fresh copy of Beagle 2.2.0 with Intel C++ Compiler 8.0 (the version I have on my computer) using the same options you gave....
Christian Gagne
raspingoo
Offline Send Email
Mar 3, 2005
1:20 am
614
I am trying to read in a milestone, but Open BEAGLE 2.2.0 crashes right after reading in the milestone file with the following error: ... "Assertion failed." ...
Jim Shepherd
jimshep123
Offline Send Email
Mar 6, 2005
2:32 pm
615
Hi Jim, ... For me, this is probably a misuse in the configuration file, or something similar. When applying the CMA-ES (mu,lambda)_w replacement strategy, the...
Christian Gagne
raspingoo
Offline Send Email
Mar 6, 2005
4:34 pm
616
... I agree, but the config file seems OK. Here is the relevant section in my config file: <BootStrapSet> <IfThenElseOp parameter="ms.restart.file"...
Jim Shepherd
jimshep123
Offline Send Email
Mar 6, 2005
4:52 pm
617
... It was an error in my config file. Stepping through the program with the debugger, I found that the ms.restart.file key was not set to the filename. For...
Jim Shepherd
jimshep123
Offline Send Email
Mar 6, 2005
8:02 pm
618
In order to build a fully optimized binary of openbeagle using the Intel compier, the commands are: ./configure --disable-shared --enable-optimization CC=icpc...
graamone
Offline Send Email
Mar 11, 2005
1:09 pm
619
I'm working on a technique that requires some form of niching (e.g. fitness sharing). I'm just wondering if it has been done in Open Beagle? Thanks MH...
minhha_76
Online Now Send Email
Mar 31, 2005
2:03 pm
620
Hi, ... Niching has been implemented in the context of multi-objective selection operators (NSGA-II and NPGA2), but in a very specific fashion. Otherwise,...
Christian Gagne
raspingoo
Offline Send Email
Mar 31, 2005
2:48 pm
621
I need to implement differential evolution, which in principle, will crossover between 3 individuals rather than 2 as in normal crossover. I read the code in...
minhha_76
Online Now Send Email
Apr 6, 2005
12:40 pm
622
... My experience is with the GP side of OpenBeagle. I'm not sure if GP is what you are working on, but I suspect that the difference wouldn't be great if you...
Matthew Walker
mattgwwalker
Offline Send Email
Apr 7, 2005
12:10 am
623
... One more thing. If you get Beagle from the CVS sources then there's a test directory that has something you might find useful. One of the problems with...
Matthew Walker
mattgwwalker
Offline Send Email
Apr 7, 2005
12:29 am
624
Hi, ... I would add that the abstract Beagle::CrossoverOp should in fact be named something like Beagle::TwoParentsCrossoverOp or such. For the moment, all the...
Christian Gagne
raspingoo
Offline Send Email
Apr 7, 2005
1:39 pm
625
Thank you very much for all of your helps, it's great. Minh Ha ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo!...
Minh Ha Nguyen
minhha_76
Online Now Send Email
Apr 7, 2005
11:04 pm
626
Hi Jim, So, please, how can you fix the problem? I have the same problem too. Thanks Minh Ha ... replacement ... deme is ... maybe ... file. ... with ... the ...
minhha_76
Online Now Send Email
Apr 11, 2005
9:38 am
627
... Following is a sample configuration file that should show the proper way to read from a restart file. <?xml version="1.0" encoding="ISO-8859-1"?> <Beagle> ...
Jim Shepherd
jimshep123
Offline Send Email
Apr 11, 2005
11:21 am
628
Hi, I'm currently building my experiments of the coevolution of an ensemble of neural network. I have tried the coev examples provided in the package and...
minhha_76
Online Now Send Email
May 2, 2005
5:29 am
629
Hello Minh Ha, ... Your question is pretty vague and it is difficult for me to give you a precise and adequate answer. I did some work in the past with co- ...
Christian Gagne
raspingoo
Offline Send Email
May 3, 2005
12:33 am
630
hi, Is it right that to use elitism in the coevolution part, all I need to do is to fix up the .conf files the same way as in the symreg or maxfct examples? Do...
Minh Ha Nguyen
minhha_76
Online Now Send Email
May 3, 2005
6:51 am
631
This is one of my config file for the coevolution. Could you please help me to change into the generational version with an elitism of 1? Thanks Minh Ha <?xml...
minhha_76
Online Now Send Email
May 3, 2005
6:57 am
632
Hi Minh Ha, ... The coevolution evaluation operator can't be used as a breedable operator, so you will not be able to use the elitism config file examples "as...
Christian Gagne
raspingoo
Offline Send Email
May 3, 2005
1:14 pm
633
I am confused about this Breeder. What I need is this: - From the original population of 50 for example - use OversizeOp to generate a population of 100 (50...
minhha_76
Online Now Send Email
May 9, 2005
1:32 am
634
... You don't need to rewrite anything. You only need to nest the mutation and crossover operator in a breeder pipeline, as in the following. <OversizeOp> ...
Christian Gagne
raspingoo
Offline Send Email
May 9, 2005
4:39 pm
635
Hi, I need to compile my project under Unix. I can compile the standard Beagle alright, however, in my project, I need to use another library call nodelib (I...
minhha_76
Online Now Send Email
May 21, 2005
8:40 am
636
The extra library that I compiled is libnode.a It seems that all I need is to add -lm -l\<directory>\ lnode.a into the compiling cc statement. However, I do...
minhha_76
Online Now Send Email
May 21, 2005
11:43 pm
637
... You should add the -L<your_lib_path> and -l<your_lib_name> options to the linker. How to do this depends on the development environment you are using. On...
Christian Gagne
raspingoo
Offline Send Email
May 22, 2005
12:17 am
638
Hi beaglers I need a GP framework that will let me easily create a vector of GP trees, serialize them, transmit between machines, and unserialize them. I'll...
matt studley
hamsterchutney
Offline Send Email
May 23, 2005
5:28 pm
639
Hi Matt, ... You seem to correctly understand Beagle's I/O mechanism. Beagle can be used quite easily to read / write GP trees in a XML form. I advice you to...
Christian Gagne
raspingoo
Offline Send Email
May 23, 2005
5:48 pm
640
Hi Matt, ... Sounds interesting. I was planning to implement something very similar within the next few months. Perhaps we could work together? What were ...
Matthew Walker
mattgwwalker
Offline Send Email
May 23, 2005
8:52 pm
641
... Thanks for your reply Christian, and for your advice! best wishes Matt _________________________________________________________________ Express yourself...
matt studley
hamsterchutney
Offline Send Email
May 24, 2005
1:05 pm
Messages 612 - 641 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