prepkit.py 文件源码

python
阅读 19 收藏 0 点赞 0 评论 0

项目:nature_methods_multicut_pipeline 作者: ilastik 项目源码 文件源码
def __call__(self, inp=None):
        """Apply preptrain to input `inp`."""
        # Parse
        inp = (self.x if inp is None else inp)
        # Instantiate an interloop container
        itc = inp

        # Loop
        for coach in self.train:
            try:
                itc = coach(itc)
            except Exception as e:
                if self._debug:
                    print("Exception raised, entering debugger. Hit 'q' followed by 'return' to exit.")
                    import ipdb
                    ipdb.set_trace()
                else:
                    raise e

        # Assign and return
        self.y = itc
        return self.y
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号