ImportError Traceback (most recent call last) Cell In[5], line 3 1 import networkx as nx 2 G = nx.karate_club_graph() ----> 3 from networkx.algorithms.link_prediction import train_test_split_edge 4 G_train, G_test = train_test_split_edge(G) ImportError: cannot import name 'train_test_split_edge' from 'networkx.algorithms.link_prediction' (C:\Users\hp\anaconda3\envs\pyG\lib\site-packages\networkx\algorithms\link_prediction.py)
时间: 2024-01-31 21:02:40 浏览: 335
这个错误可能是因为你的 NetworkX 版本较老,没有提供 `train_test_split_edge` 函数。你可以尝试更新 NetworkX 到最新版本,或者在旧版本中使用其他类似的函数。
你可以尝试使用以下代码进行训练集和测试集的划分:
```python
from sklearn.model_selection import train_test_split
G_train, G_test = train_test_split(G, test_size=0.2)
```
其中,`test_size` 参数用于指定测试集所占比例。你可以根据需求进行调整。
相关问题
ImportError Traceback (most recent call last) Cell In[1], line 3 1 import xgboost as xgb 2 from sklearn.model_selection import train_test_split ----> 3 from sklearn.externals import joblib 4 from sklearn.model_selection import ParameterGrid 5 from ultis import * ImportError: cannot import name 'joblib' from 'sklearn.externals' (e:\python\Lib\site-packages\sklearn\externals\__init__.py)
这个错误是因为你使用的Sklearn版本不同于你的代码中使用的版本。在Sklearn 0.23版本中,joblib已经从sklearn.externals中移动到了sklearn.utils中。所以你需要更新sklearn版本或者改变你的代码中的导入语句。
你可以通过以下方式导入joblib:
```python
from sklearn.utils import joblib
```
或者升级sklearn版本:
```python
!pip install --upgrade scikit-learn
```
ImportError: cannot import name 'COMMON_SAFE_ASCII_CHARACTERS' from 'charset_normalizer.constant' (C:\Users\BB\miniconda3\envs\py310_chat\lib\site-packages\charset_normalizer\constant.py) >>> tokenizer = AutoTokenizer.from_pretrained("/home/featurize/chatglm2-6b", trust_remote_code=True) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'AutoTokenizer' is not defined >>> model = AutoModel.from_pretrained("/home/featurize/chatglm2-6b", trust_remote_code=True, device='cuda') Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'AutoModel' is not defined >>> model = model.eval() Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'model' is not defined >>> response, history = model.chat(tokenizer, "你好", history=[]) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'model' is not defined
您遇到的问题是因为缺少必要的导入。您需要正确导入所需的模块和类,才能使用它们。在您的代码中,缺少了对`AutoTokenizer`和`AutoModel`的导入。
您可以尝试添加以下导入语句:
```python
from transformers import AutoTokenizer, AutoModel
```
将这两行代码添加到您的代码开头后,再次运行您的代码,应该就不会出现`NameError`了。请确保您已正确安装了相应的依赖项(如`transformers`)。
如果您仍然遇到其他问题,请提供更多的错误信息和上下文,以便我能够更好地帮助您解决问题。
阅读全文