コード例 #1
0
ファイル: rdists.py プロジェクト: yueyuep/TCNN
    def __init__(self, mu, sigma):
        self.mu_ = mu
        self.s_ = sigma
        scipy_lognorm_gen.__init__(self)

        # I still don't understand what scipy stats objects are
        # doing re: this stuff
        del self.__dict__['_parse_args']
        del self.__dict__['_parse_args_stats']
        del self.__dict__['_parse_args_rvs']
コード例 #2
0
ファイル: rdists.py プロジェクト: abiteboul/hyperopt
    def __init__(self, mu, sigma):
        self.mu_ = mu
        self.s_ = sigma
        scipy_lognorm_gen.__init__(self)

        # I still don't understand what scipy stats objects are
        # doing re: this stuff
        del self.__dict__['_parse_args']
        del self.__dict__['_parse_args_stats']
        del self.__dict__['_parse_args_rvs']