mailr6618 - /1.3/generic_fns/model_selection.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on July 03, 2008 - 21:20:
Author: bugman
Date: Thu Jul  3 21:20:46 2008
New Revision: 6618

URL: http://svn.gna.org/viewcvs/relax?rev=6618&view=rev
Log:
Reverted the removal of the call to the specific duplicate_data() method.


Modified:
    1.3/generic_fns/model_selection.py

Modified: 1.3/generic_fns/model_selection.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/model_selection.py?rev=6618&r1=6617&r2=6618&view=diff
==============================================================================
--- 1.3/generic_fns/model_selection.py (original)
+++ 1.3/generic_fns/model_selection.py Thu Jul  3 21:20:46 2008
@@ -143,6 +143,7 @@
     first_run = None
     function_type = {}
     count_num_instances = {}
+    duplicate_data = {}
     model_statistics = {}
     skip_function = {}
 
@@ -160,6 +161,7 @@
 
                 # Specific duplicate data, number of instances, and model 
statistics functions.
                 count_num_instances[pipe] = get_specific_fn('num_instances', 
ds[pipe].pipe_type)
+                duplicate_data[pipe] = get_specific_fn('duplicate_data', 
ds[pipe].pipe_type)
                 model_statistics[pipe] = get_specific_fn('model_stats', 
ds[pipe].pipe_type)
                 skip_function[pipe] = get_specific_fn('skip_function', 
ds[pipe].pipe_type)
 
@@ -175,6 +177,7 @@
 
             # Specific duplicate data, number of instances, and model 
statistics functions.
             count_num_instances[pipe] = get_specific_fn('num_instances', 
ds[pipe].pipe_type)
+            duplicate_data[pipe] = get_specific_fn('duplicate_data', 
ds[pipe].pipe_type)
             model_statistics[pipe] = get_specific_fn('model_stats', 
ds[pipe].pipe_type)
             skip_function[pipe] = get_specific_fn('skip_function', 
ds[pipe].pipe_type)
 
@@ -298,8 +301,8 @@
                 best_crit = crit
 
         # Print out of selected model.
-        print "\nThe model from the data pipe " + `best_model` + " has been 
selected."
+        print "\nThe model from the run " + `best_model` + " has been 
selected."
 
         # Duplicate the data from the 'best_model' to the model selection 
data pipe.
         if best_model != None:
-            copy(best_model, modsel_pipe)
+            duplicate_data[best_model](pipe_from=best_model, 
pipe_to=modsel_pipe, model_index=i, global_stats=global_stats)




Related Messages


Powered by MHonArc, Updated Thu Jul 03 21:40:11 2008