예제 #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
파일: base.py 프로젝트: PepGardiola/PyMVPA
 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
파일: detrend.py 프로젝트: neurosbh/PyMVPA
 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
파일: base.py 프로젝트: PepGardiola/PyMVPA
 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
파일: base.py 프로젝트: PepGardiola/PyMVPA
 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
파일: detrend.py 프로젝트: arnaudsj/PyMVPA
 def __str__(self):
     return _str(self, ord=self.__polyord)