老师你好,keras无权限如何处理,我把文件夹的属性权限全都修改了一遍,还是无法运行
来源:2-3 实战分类模型之数据读取与展示

qq_紫夜_8
2020-02-24
PermissionError Traceback (most recent call last)
in
1 fashion_mnist = keras.datasets.fashion_mnist
----> 2 (x_train_all,y_train_all),(x_test,y_test) = fashion_mnist.load_data()
3 x_valid,x_train = x_train_all[:5000],x_train_all[5000:]
4 y_valid,y_train = y_train_all[:5000],y_train_all[5000:]
5
~/.local/lib/python3.6/site-packages/tensorflow_core/python/keras/datasets/fashion_mnist.py in load_data()
51 paths = []
52 for fname in files:
—> 53 paths.append(get_file(fname, origin=base + fname, cache_subdir=dirname))
54
55 with gzip.open(paths[0], ‘rb’) as lbpath:
~/.local/lib/python3.6/site-packages/tensorflow_core/python/keras/utils/data_utils.py in get_file(fname, origin, untar, md5_hash, file_hash, cache_subdir, hash_algorithm, extract, archive_format, cache_dir)
222 datadir_base = os.path.join(’/tmp’, ‘.keras’)
223 datadir = os.path.join(datadir_base, cache_subdir)
–> 224 _makedirs_exist_ok(datadir)
225
226 if untar:
~/.local/lib/python3.6/site-packages/tensorflow_core/python/keras/utils/data_utils.py in _makedirs_exist_ok(datadir)
286 def _makedirs_exist_ok(datadir):
287 if six.PY3:
–> 288 os.makedirs(datadir, exist_ok=True) # pylint: disable=unexpected-keyword-arg
289 else:
290 # Python 2 doesn’t have the exist_ok arg, so we try-except here.
/usr/lib/python3.6/os.py in makedirs(name, mode, exist_ok)
208 if head and tail and not path.exists(head):
209 try:
–> 210 makedirs(head, mode, exist_ok)
211 except FileExistsError:
212 # Defeats race condition when another thread created the path
/usr/lib/python3.6/os.py in makedirs(name, mode, exist_ok)
218 return
219 try:
–> 220 mkdir(name, mode)
221 except OSError:
222 # Cannot rely on checking for EEXIST, since the operating system
PermissionError: [Errno 13] Permission denied: ‘/datasets’
1回答
-
正十七
2020-02-24
同学你好,看问题应该是你试图使用了 /datasets文件夹才会导致这个问题。一般我们使用keras内置的数据集会放在~/datasets下。你再检查一下你使用的目录名,如果还不可以,可以再提个问题,把源代码贴上来。
022020-02-26
相似问题
回答 1
回答 1