TypeError: 'module' object is not callable using fpgrowth algorithm with mlxtend
TypeError: 'module' object is not callable using fpgrowth algorithm with mlxtend
从 mlxtend.frequent_patterns 导入 fpgrowth
#使用F-P增长算法
#数
frequent_itemsets_fp_num=fpgrowth(num, min_support=0.01, use_colnames=True)
你好,
我尝试将 fpgrowth 与 mlxtend 一起使用,但出现错误 'module' object not callable。我试过使用 'pip install git+git://github.com/rasbt/mlxtend.git',它也不行。
请给我一些建议来解决这个问题。
感谢。
您应该删除计算机上安装的版本。并安装最新版本。
pip uninstall mlxtend
pip install git+git://github.com/rasbt/mlxtend.git
从 mlxtend.frequent_patterns 导入 fpgrowth #使用F-P增长算法
#数
frequent_itemsets_fp_num=fpgrowth(num, min_support=0.01, use_colnames=True)
你好, 我尝试将 fpgrowth 与 mlxtend 一起使用,但出现错误 'module' object not callable。我试过使用 'pip install git+git://github.com/rasbt/mlxtend.git',它也不行。 请给我一些建议来解决这个问题。
感谢。
您应该删除计算机上安装的版本。并安装最新版本。
pip uninstall mlxtend
pip install git+git://github.com/rasbt/mlxtend.git