-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: 'NoneType' object is not iterable #9
Comments
我用po主给的pcap数据集就可以运行成功,但用其他数据集就会出现问题 |
我用这个flowcontainer完成了多个流量分类项目,flowcontainer没有任何问题。 |
|
把numpy降低或者更新最新版的flowcontainer==6.3 |
这是怎么回事呢,我用的是CICflow2019数据集的pcap文件
是在下述语句出错的:
for packet in packets:
key = (packet[0], packet[1], packet[2])
# Add packet to flow
result[key] = result.get(key, Flow()).add(packet,extention)
是说packets是空值,也就是说pcap文件读取没有成功,不知该如何解决
The text was updated successfully, but these errors were encountered: