请参见下面的代码
# HITS
nx.hits(G, max_iter=9999999999)
# Finding Hubs & Authorities. Outputs in a dictionary format
hubs, authorities = nx.hits(G, normalized=False)
# removed the default normalization because it normalizes hubs from a range of 1 to 5 only.
1条答案
按热度按时间y1aodyip1#
scipy
是一个与numpy
数组交互的算法集合。实际上,很多numpy
的实现都是用C编写的,因此它在某种程度上受到了C功能的限制。在本例中,它试图将Pythonint
转换为Cint
。与Python的int
类型不同,int
类型的取值范围有限(最大为2^31 - 1 = 2147483647
)。您为max_iter
指定的值大于C支持的最大值,因此它无法调用您所需的函数,因为它无法执行转换。