當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python SciPy datasets.clear_cache用法及代碼示例


本文簡要介紹 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

相關用法


注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.datasets.clear_cache。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。