예제 #1
0
파일: dataset.py 프로젝트: B-Rich/PyMVPA
 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 프로젝트: esc/PyMVPA
 def __str__(self):
     if __debug__ and 'CLF_' in debug.active:
         return "%s / %s" % (repr(self), super(Classifier, self).__str__())
     else:
         return _str(self)
예제 #4
0
파일: base.py 프로젝트: B-Rich/PyMVPA
 def __str__(self):
     return _str(self, '-'.join([str(n) for n in self]).replace('Mapper', ''))
예제 #5
0
 def __str__(self):
     return _str(self, bl=self.boxlength)
예제 #6
0
 def __str__(self):
     return _str(self, ','.join([str(k) for k in self.keys()]))
예제 #7
0
파일: fx.py 프로젝트: esc/PyMVPA
 def __str__(self):
     return _str(self, fx=self.__fx.__name__)
예제 #8
0
파일: base.py 프로젝트: geeragh/PyMVPA
 def __str__(self):
     mapperlist = "%s" % "-".join([str(m) for m in self])
     return _str(self,
                 mapperlist.replace('Mapper', ''))
예제 #9
0
 def __str__(self):
     return _str(self, fx=self.__fx.__name__)
예제 #10
0
파일: detrend.py 프로젝트: arokem/PyMVPA
 def __str__(self):
     return _str(self, ord=self.__polyord)
예제 #11
0
 def __str__(self):
     return _str(self)
예제 #12
0
파일: slicing.py 프로젝트: esc/PyMVPA
 def __str__(self):
     # with slicearg it can quickly get very unreadable
     #return _str(self, str(self._slicearg))
     return _str(self)
예제 #13
0
파일: resampling.py 프로젝트: esc/PyMVPA
 def __str__(self):
     return _str(self, self._amount, n=self._attr, count=self.nruns,
                 apply_selection=self._apply_selection)
예제 #14
0
파일: filter.py 프로젝트: geeragh/PyMVPA
 def __str__(self):
     return _str(self, chunks_attr=self.__chunks_attr)
예제 #15
0
파일: boxcar.py 프로젝트: B-Rich/PyMVPA
 def __str__(self):
     return _str(self, bl=self.boxlength)
예제 #16
0
파일: node.py 프로젝트: esc/PyMVPA
 def __str__(self):
     return _str(self, '-'.join([str(n) for n in self]))
예제 #17
0
 def __str__(self):
     return _str(self, chunks_attr=self.__chunks_attr)
예제 #18
0
 def __str__(self):
     return _str(self, self._pattr, n=self.nruns, limit=self._limit,
                 assure=self._assure_permute)
예제 #19
0
 def __str__(self):
     return _str(self, ','.join([str(k) for k in self.keys()]))
예제 #20
0
파일: flatten.py 프로젝트: B-Rich/PyMVPA
 def __str__(self):
     return _str(self)
예제 #21
0
파일: base.py 프로젝트: esc/PyMVPA
 def __str__(self):
     return _str(self, ', '.join("%s=%s" % x for x in self._includes))
예제 #22
0
파일: base.py 프로젝트: B-Rich/PyMVPA
 def __str__(self):
     return _str(self, str(self.clf))
예제 #23
0
파일: base.py 프로젝트: esc/PyMVPA
 def __str__(self):
     return _str(self, self.count)
예제 #24
0
 def __str__(self):
     return _str(self, ord=self.__polyord)
예제 #25
0
 def __str__(self):
     mapperlist = "%s" % "-".join([str(m) for m in self])
     return _str(self, mapperlist.replace('Mapper', ''))