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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1281 - 1310 of 1467   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1281
... I finally had some time to try this out, and I've now got the two threads evolving one at a time in turn, using a static PACC::Threading::Condition. So far...
stig.petersen
Offline Send Email
Jul 17, 2008
7:46 pm
1282
Hi Stig, Yes, it is somehow important to get a Context for each population that is evolving, when doing joint fitness evaluation. That is not the Context...
Christian GagnÂŽe
raspingoo
Offline Send Email
Jul 18, 2008
1:03 pm
1283
... Thanks, I finally had an evening to try this out and it now all works fine :) -Stig...
stig.petersen
Offline Send Email
Aug 20, 2008
12:16 pm
1284
Primitives depending on additional data I'm working on a project that has some primitives depending on additional data.eg. AVG (Average of some data in a...
aleksandar.topuzovic
aleksandar.t...
Offline Send Email
Aug 21, 2008
6:38 pm
1285
Hi Aleksandar, You should not rely on the "persistence" of values in the Context from one fitness evaluation to another. It can stay the same as you observed, ...
Christian GagnÂŽe
raspingoo
Offline Send Email
Aug 21, 2008
9:01 pm
1286
Hello! I'm using OpenBeagle 3.0.3 and applying it to symbolic regression. It's just awesome software!, however few things are not clear to me. I have a quad...
Dubik_KH_UKR
Offline Send Email
Sep 8, 2008
12:54 pm
1287
Hi Sergiy, Fitness evaluation in Open BEAGLE is not designed for parallel execution on multi-core computers. I agree that it would be very interesting for ...
Christian GagnÂŽe
raspingoo
Offline Send Email
Sep 8, 2008
1:12 pm
1288
Hello Christian, Thank you very much for such a detailed response. I didn't get it working yet, but at least now there are problems with my code. However I...
Dubik_KH_UKR
Offline Send Email
Sep 9, 2008
7:32 am
1289
Hi Sergiy, Standard GP tree interpretation modifies only values in the Context. Therefore, as far as you have one Context per thread, parallel fitness ...
Christian GagnÂŽe
raspingoo
Offline Send Email
Sep 9, 2008
3:48 pm
1290
Hi, In my program where I co-evolve GP populations using my own threading code, as discussed in July and August I've been stress testing things and get perfect...
stig.petersen
Offline Send Email
Sep 9, 2008
7:19 pm
1291
Hi Stig, The implementation of ADFs in Open BEAGLE is inherently not thread-safe. The problem is with the GP::Argument primitive, which store locally the value...
Christian GagnÂŽe
raspingoo
Offline Send Email
Sep 9, 2008
7:45 pm
1292
Hi again, Just one precision, following message from Stig. Argument terminals in GP programs make, for example the X values in symbolic expressions, are ...
Christian GagnÂŽe
raspingoo
Offline Send Email
Sep 9, 2008
7:48 pm
1293
... I'm afraid that even after changing it to just-in-time mode I still get the same crashes :( I don't actually do concurrent fitness evaluation as I alsways...
stig.petersen
Offline Send Email
Sep 9, 2008
8:29 pm
1294
That's what I meant. I do set several variables (GP::EvaluationOP::setValue) for individual and was suspicious about that. I guess I will follow co-ev path...
Dubik_KH_UKR
Offline Send Email
Sep 9, 2008
8:40 pm
1295
... It was just coincidence - it crashed a little while later :( The reason I asked about how cloning of individuals with ADFs works, is that if references...
stig.petersen
Offline Send Email
Sep 10, 2008
10:47 am
1296
Hi Stig, ... I don't think there should be problems with the ADFs and cloning data in general. This is thread-safe. But as I explained to Sergyi in another...
Christian GagnÂŽe
raspingoo
Offline Send Email
Sep 10, 2008
11:00 pm
1297
Hello! Is there a simple way to create individual with primitive tree, which would represent expression: (X + Y) * 5? X and Y are variables which can be set...
Dubik_KH_UKR
Offline Send Email
Sep 23, 2008
11:19 am
1298
Hi Sergiy, GP trees are simply vector of nodes organized in prefix order. http://en.wikipedia.org/wiki/Polish_notation First, you must have a primitive set...
Christian GagnÂŽe
raspingoo
Offline Send Email
Sep 23, 2008
1:04 pm
1299
Thank you very much Christian! Finally I got it to work. Here is the code in case someone is interested: GP::PrimitiveSet::Handle lSet = new GP::PrimitiveSet; ...
Dubik_KH_UKR
Offline Send Email
Sep 24, 2008
7:52 am
1300
Hi Sergiy, Thanks for the information. More below. ... This is the index of the PrimitiveSet to use in the PrimitiveSuperSet. The PrimitiveSuperSet is simply a...
Christian GagnÂŽe
raspingoo
Offline Send Email
Sep 24, 2008
1:35 pm
1301
Hello all, Hopefully this will be usefully for someone. Few weeks ago I realised that there are no obvious bottlenecks in OpenBeagle and the only way to...
Dubik_KH_UKR
Offline Send Email
Sep 28, 2008
7:15 pm
1302
Hi Pascal, For reading the best individual from the milestone file, you need to craft some code to extract it from the Vivarium's hall-of-fame. For that ...
Christian GagnÂŽe
raspingoo
Offline Send Email
Oct 6, 2008
12:49 am
1303
Hi, The most convenient way to read an individual from a file is to use method Beagle::Individual::readFromFile(std::string inFileName, Beagle& ioSystem). The...
Christian GagnÂŽe
raspingoo
Offline Send Email
Oct 6, 2008
5:10 pm
1304
Hi, With readFromFile method, you only need to create a new individual on the heap, as usual. Beagle::GP::Individual::Handle lIndividual = new...
Christian GagnÂŽe
raspingoo
Offline Send Email
Oct 6, 2008
5:52 pm
1305
Hi, Ah, sorry, I forgot the fact that you need to set the genotype allocator correctly set-up in order to read the individual. GP::Tree::Alloc::Handle hTree =...
Christian GagnÂŽe
raspingoo
Offline Send Email
Oct 6, 2008
5:57 pm
1306
Hi Pascal, Look at the configuration file 'parity-adfs.conf'. It shows how ADFs can be set with the framework. In general, no coding is necessary, only good ...
Christian GagnÂŽe
raspingoo
Offline Send Email
Oct 23, 2008
1:32 am
1307
Hello, I am new in Open Beagle. I seems to be a great, complex framework! I am trying now to play with the examples and learn as much as possible from the...
lhmlhm111
Offline Send Email
Oct 23, 2008
8:32 pm
1308
Hi, ... That's mostly it. A reference to the yahoogroups list is given on the project's Web page. http://beagle.gel.ulaval.ca/#mailinglist There is also a...
Christian GagnÂŽe
raspingoo
Offline Send Email
Oct 24, 2008
2:05 pm
1309
Hi Pascal, That's a bug that have been fixed in the CVS version of the code. The problem is with line 297 of GP/Tree.cpp file, in method ...
Christian GagnÂŽe
raspingoo
Offline Send Email
Oct 27, 2008
8:53 pm
1310
Hi, I noticed that GA examples uses GA::FloatVector or GA::IntegerVector as a solution vector. Is it possible to create mixed type vector? For instance I want...
Sergiy Dubovik
Dubik_KH_UKR
Offline Send Email
Jan 12, 2009
8:50 pm
Messages 1281 - 1310 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