示例#1
0
 def __str__(self):
     samplesstr = 'x'.join(["%s" % x for x in self.shape])
     samplesstr += '@%s' % self.samples.dtype
     cols = [str(col).replace(col.__class__.__name__, label)
             for col, label in [(self.sa, 'sa'),
                                (self.fa, 'fa'),
                                (self.a, 'a')] if len(col)]
     # include only collections that have content
     return _str(self, samplesstr, *cols)
示例#2
0
 def __str__(self):
     samplesstr = 'x'.join(["%s" % x for x in self.shape])
     samplesstr += '@%s' % self.samples.dtype
     cols = [str(col).replace(col.__class__.__name__, label)
                 for col, label in [(self.sa, 'sa'),
                                    (self.fa, 'fa'),
                                    (self.a, 'a')] if len(col)]
     # include only collections that have content
     return _str(self, samplesstr, *cols)
示例#3
0
文件: base.py 项目: adamatus/PyMVPA
 def __str__(self, *args, **kwargs):
     if __debug__ and 'CLF_' in debug.active:
         return "%s / %s" % (repr(self), super(Classifier, self).__str__())
     else:
         return _str(self, *args, **kwargs)
示例#4
0
 def __str__(self):
     return _str(self, ','.join([str(k) for k in sorted(self.keys())]))
示例#5
0
 def __str__(self):
     return _str(self, str(self._amount), n=self._attr, count=self.count,
                 apply_selection=self._apply_selection)
示例#6
0
 def __str__(self):
     return _str(self, '-'.join([str(n) for n in self]))
示例#7
0
文件: fx.py 项目: reka-daniel/PyMVPA
 def __str__(self):
     return _str(self, fx=self.__fx.__name__)
示例#8
0
 def __str__(self):
     return _str(self, ord=self.params.polyord)
示例#9
0
 def __str__(self):
     return _str(self, str(self.clf))
示例#10
0
文件: base.py 项目: Python3pkg/PyMVPA
 def __str__(self):
     return _str(self, ', '.join("%s=%s" % x for x in self._includes))
示例#11
0
 def __str__(self):
     return _str(self, ord=self.params.polyord)
示例#12
0
 def __str__(self):
     return _str(self, chunks_attr=self.__chunks_attr)
示例#13
0
 def __str__(self):
     return _str(self,
                 self._pattr,
                 n=self.count,
                 limit=self._limit,
                 assure=self._assure_permute)
示例#14
0
 def __str__(self):
     return _str(self, ord=self.__polyord)
示例#15
0
文件: node.py 项目: Anhmike/PyMVPA
 def __str__(self, *args, **kwargs):
     return _str(self, *args, **kwargs)
示例#16
0
 def __str__(self):
     return _str(self,
                 str(self._amount),
                 n=self._attr,
                 count=self.count,
                 apply_selection=self._apply_selection)
示例#17
0
 def __str__(self):
     return _str(self, ', '.join("%s=%s" % x for x in self._includes))
示例#18
0
文件: base.py 项目: jgors/PyMVPA
 def __str__(self):
     return _str(self, str(self.nruns))
示例#19
0
 def __str__(self):
     return _str(self, str(self.count))
示例#20
0
文件: base.py 项目: Python3pkg/PyMVPA
 def __str__(self):
     return _str(self, str(self.count))
示例#21
0
 def __str__(self):
     return _str(self, chunks_attr=self.__chunks_attr)
示例#22
0
文件: node.py 项目: jgors/PyMVPA
 def __str__(self):
     return _str(self, '-'.join([str(n) for n in self]))
示例#23
0
文件: base.py 项目: Python3pkg/PyMVPA
 def __str__(self):
     return _str(self, str(self.clf))
示例#24
0
 def __str__(self):
     # with slicearg it can quickly get very unreadable
     #return _str(self, str(self._slicearg))
     return _str(self)
示例#25
0
 def __str__(self):
     # with slicearg it can quickly get very unreadable
     #return _str(self, str(self._slicearg))
     return _str(self)
示例#26
0
文件: fx.py 项目: schoeke/PyMVPA
 def __str__(self):
     return _str(self, fx=self.__fx.__name__)
示例#27
0
 def __str__(self):
     return _str(self, bl=self.boxlength)
示例#28
0
 def __str__(self):
     return _str(self, ','.join([str(k) for k in sorted(self.keys())]))
示例#29
0
 def __str__(self, *args, **kwargs):
     return _str(self, *args, **kwargs)
示例#30
0
文件: base.py 项目: neurosbh/PyMVPA
 def __str__(self, *args, **kwargs):
     if __debug__ and 'CLF_' in debug.active:
         return "%s / %s" % (repr(self), super(Classifier, self).__str__())
     else:
         return _str(self, *args, **kwargs)
示例#31
0
	def _str_(self):
		return _str(self)
示例#32
0
 def __str__(self):
     return _str(self)
示例#33
0
 def __str__(self):
     return _str(self, self._pattr, n=self.count, limit=self._limit,
                 assure=self._assure_permute)
示例#34
0
文件: boxcar.py 项目: Anhmike/PyMVPA
 def __str__(self):
     return _str(self, bl=self.boxlength)
示例#35
0
 def __str__(self):
     return _str(self, ord=self.__polyord)