我是靠谱客的博主 勤恳菠萝,最近开发中收集的这篇文章主要介绍sklearn计算idf值公式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

        if self.use_idf:
            n_samples, n_features = X.shape
            df = _document_frequency(X)
            df = df.astype(dtype, **`_astype_copy_false`(df))

            # perform idf smoothing if required
            df += int(self.smooth_idf)
            n_samples += int(self.smooth_idf)

            # log+1 instead of log makes sure terms with zero idf don't get
            # suppressed entirely.
            idf = np.log(n_samples / df) + 1

最后

以上就是勤恳菠萝为你收集整理的sklearn计算idf值公式的全部内容,希望文章能够帮你解决sklearn计算idf值公式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部