Пример #1
0
 def __init__(self):
     verb_classifier.Engine.__init__(self, "bring", 
                                     Signature(figure=Agent,
                                               landmark=Agent),
                                     [#follow.AverageDistance(),
                                      #Approach(),
                                      AverageOfPrimitives(),
                                      ])
Пример #2
0
    def __init__(self):
        verb_classifier.Engine.__init__(self, "wander", Signature(figure=Agent),
                                        [PathSmoothness(), PathLength()]
                                        )


        
        
                        
Пример #3
0
 def __init__(self):
     verb_classifier.Engine.__init__(self, "avoid", 
                                     Signature(figure=Agent,
                                               landmark=Agent),
                                     [follow.AverageDistance(),
                                      #Approach(),
                                      #AverageOfPrimitives(),                                         
                                      ],
                                      isLiquid=True
                                      )
Пример #4
0
 def __init__(self):
     verb_classifier.Engine.__init__(
         self,
         "meet",
         Signature(figure=Agent, landmark=Agent),
         [  #follow.AverageDistance(), 
             #follow.Visibility(),
             #Approach(),
             #follow.AverageOfPrimitives(),
             DisplacementFeatures(),
             #follow.MovingTowards(),
         ])
Пример #5
0
    def __init__(self):
        verb_classifier.Engine.__init__(self, "follow", Signature(figure=Agent,
                                                  landmark=Agent),
                                        [#AverageDistance(), 
                                         #Visibility(),
                                         #Approach(),
                                         AverageOfPrimitives(),
                                         #MovingTowards(),
                                         ],
                                         isLiquid=True)

        
                        
Пример #6
0
 def __init__(self):
     verb_classifier.Engine.__init__(
         self, "check", Signature(figure=Agent, landmark=Agent),
         [AverageDistance()])
Пример #7
0
 def __init__(self):
     verb_classifier.Engine.__init__(self, "go", Signature(figure=Agent),
                                     [DisplacementFeatures()])