Ejemplo n.º 1
0
    def define_jobs_context(self, context):
        for cs, stream in iterate_context_names(context, Dev02.streams):
            cs.subtask(DDSLShowStream, nsamples=4, streams=stream)
            

        combs = iterate_context_names_pair(context,
                                           Dev02.streams, Dev02.estimators)
        
        for c, stream, estimator in combs: 
            c.subtask(DDSLLearn, stream=stream, estimator=estimator,
                      max_displ=0.3)
Ejemplo n.º 2
0
    def define_jobs_context(self, context):
        for cs, stream in iterate_context_names(context, Dev02.streams):
            cs.subtask(DDSLShowStream, nsamples=4, streams=stream)

        combs = iterate_context_names_pair(context, Dev02.streams,
                                           Dev02.estimators)

        for c, stream, estimator in combs:
            c.subtask(DDSLLearn,
                      stream=stream,
                      estimator=estimator,
                      max_displ=0.3)
Ejemplo n.º 3
0
 def define_jobs_context(self, context):
     boot_root = '/Users/andrea/scm/boot12env/ws-yc1304-grace/out/boot-root'
     for cs, stream in iterate_context_names(context, Dev03.streams):
         add_bootstream(boot_root=boot_root, id_robot=stream, limit=5000)
         
         cs.subtask(DDSLShowStream, nsamples=4, streams=stream)
         
     combs = iterate_context_names_pair(context,
                                        Dev03.streams, Dev03.estimators)
     
     for c, stream, estimator in combs: 
         c.subtask(DDSLLearn, stream=stream, estimator=estimator,
                   max_displ=0.3)
Ejemplo n.º 4
0
    def define_jobs_context(self, context):
        boot_root = '/Users/andrea/scm/boot12env/ws-yc1304-grace/out/boot-root'
        for cs, stream in iterate_context_names(context, Dev03.streams):
            add_bootstream(boot_root=boot_root, id_robot=stream, limit=5000)

            cs.subtask(DDSLShowStream, nsamples=4, streams=stream)

        combs = iterate_context_names_pair(context, Dev03.streams,
                                           Dev03.estimators)

        for c, stream, estimator in combs:
            c.subtask(DDSLLearn,
                      stream=stream,
                      estimator=estimator,
                      max_displ=0.3)