我下载了文件夹“ bert-master”,然后在该文件夹中有一个名为modeling.py的py文件。我试图在jupyter上导入它,但是Python之后停止了工作。
import modeling
#Python has stopped working
modeling.py包含以下内容:
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import collections
import copy
import json
import math
import re
import numpy as np
import six
import tensorflow as tf
所以我在文件夹“ bert-master”中创建另一个名为test.py的py文件时进行了测试,代码为:
import test
输出:
def abc():
print('abc')
运行平稳,没有任何问题。有人知道如何解决这个问题吗?