Unzip throws ZIP file not found error in "Classify ECG Signals Using LSTM Networks Example"

13 ビュー (過去 30 日間)
Looking at the example from the documentation "Classify ECG Signals Using LSTM Networks Example",
I get the following error when I run "ReadPhysionetData" from the "ClassifyECGSignalsUsingLSTMNetworksExample.mlx" deep learning example.
Error using checkfilename>validateFilename (line 165)
Function UNZIP was unable to find file ''/physionet.org/challenge/2017/training2017.zip''.
Error in checkfilename (line 49)
[fullfilename, fid] = validateFilename( ...
Error in parseUnArchiveInputs (line 81)
[archiveFilename, url] = checkfilename(archiveFilename, validExtensions, ...
Error in unzip (line 57)
[zipFilename, outputDir, url, urlFilename] = parseUnArchiveInputs( ...

採用された回答

MathWorks Support Team
MathWorks Support Team 2020 年 3 月 27 日
編集済み: MathWorks Support Team 2020 年 3 月 27 日
In MATLAB versions after R2017b and before R2019b Update 2, it is likely that the URL for the location of the data set is outdated or incorrect.
Link : <https://physionet.org/challenge/2017/training2017.zip>
should be updated to
Please replace the URL in the file "ReadPhysionetData.m" on line 8:
unzip('https://physionet.org/challenge/2017/training2017.zip')
with the archive link:
unzip('https://archive.physionet.org/challenge/2017/training2017.zip')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDownloads についてさらに検索

タグ

タグが未入力です。

製品


リリース

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by