コード例 #1
0
ファイル: dataset.py プロジェクト: Python3pkg/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
ファイル: dataset.py プロジェクト: JohnGriffiths/nidata
 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
ファイル: collections.py プロジェクト: velvetcheng/nidata
 def __str__(self):
     return _str(self, ','.join([str(k) for k in sorted(self.keys())]))
コード例 #5
0
ファイル: resampling.py プロジェクト: roshan-srin/nidata
 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
ファイル: detrend.py プロジェクト: Arthurkorn/PyMVPA
 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
ファイル: filters.py プロジェクト: armaneshaghi/PyMVPA
 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
ファイル: slicing.py プロジェクト: PepGardiola/PyMVPA
 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
ファイル: boxcar.py プロジェクト: reka-daniel/PyMVPA
 def __str__(self):
     return _str(self, bl=self.boxlength)
コード例 #28
0
ファイル: collections.py プロジェクト: roshan-srin/nidata
 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
ファイル: xdsncut.py プロジェクト: zhouguangfu/FreeROI
	def _str_(self):
		return _str(self)
コード例 #32
0
ファイル: flatten.py プロジェクト: andreirusu/PyMVPA
 def __str__(self):
     return _str(self)
コード例 #33
0
ファイル: permutation.py プロジェクト: beausievers/PyMVPA
 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)