本文简要介绍 python 语言中 scipy.datasets.clear_cache
的用法。
用法:
scipy.datasets.clear_cache(datasets=None)#
清理 scipy 数据集缓存目录。
如果提供了 scipy.datasets 方法或其列表/元组,则 clear_cache 将删除与传递的数据集方法可调用关联的所有数据文件。
默认情况下,它会删除所有缓存的数据文件。
- datasets: 可调用或可调用列表/元组或无
参数 ::
例子:
>>> from scipy import datasets >>> ascent_array = datasets.ascent() >>> ascent_array.shape (512, 512) >>> datasets.clear_cache([datasets.ascent]) Cleaning the file ascent.dat for dataset ascent
相关用法
- Python SciPy datasets.electrocardiogram用法及代码示例
- Python SciPy datasets.ascent用法及代码示例
- Python SciPy datasets.face用法及代码示例
- Python SciPy distance.sokalmichener用法及代码示例
- Python SciPy distance.dice用法及代码示例
- Python SciPy distance.braycurtis用法及代码示例
- Python SciPy dok_array.diagonal用法及代码示例
- Python SciPy distance.cityblock用法及代码示例
- Python SciPy dia_array.diagonal用法及代码示例
- Python SciPy dok_matrix.diagonal用法及代码示例
- Python SciPy dia_array.dot用法及代码示例
- Python SciPy dok_matrix.nonzero用法及代码示例
- Python SciPy distance.jensenshannon用法及代码示例
- Python SciPy distance.sokalsneath用法及代码示例
- Python SciPy dia_matrix.diagonal用法及代码示例
- Python SciPy distance.kulczynski1用法及代码示例
- Python SciPy distance.jaccard用法及代码示例
- Python SciPy distance.minkowski用法及代码示例
- Python SciPy distance.pdist用法及代码示例
- Python SciPy distance.rogerstanimoto用法及代码示例
- Python SciPy distance.canberra用法及代码示例
- Python SciPy dlti.bode用法及代码示例
- Python SciPy dia_matrix.dot用法及代码示例
- Python SciPy distance.is_valid_y用法及代码示例
- Python SciPy distance.chebyshev用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.datasets.clear_cache。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。