Skip to content

Commit 72605c2

Browse files
Added images
1 parent 5331601 commit 72605c2

File tree

53 files changed

+161
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+161
-0
lines changed

HelperFiles/DownloadData.m

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
% Copyright 2020 The MathWorks, Inc.
2+
3+
dataZip = "AirCompressorDataset.zip";
4+
url = "https://www.mathworks.com/supportfiles/audio/AirCompressorDataset/AirCompressorDataset.zip";
5+
dataFolder = "AirCompressorData";
6+
7+
disp("Checking for dataset...");
8+
9+
if ~isfolder(dataFolder)
10+
answer = questdlg("Do you want to download the dataset now?","Dataset not found","Yes","No","Yes");
11+
12+
switch answer
13+
case "Yes"
14+
if ~isfile(dataZip)
15+
outFile = websave(dataZip,url);
16+
disp("Data zip file saved as " + outFile);
17+
end
18+
19+
disp("Unzipping data file...");
20+
unzip(dataZip, dataFolder);
21+
disp("Data unzipped successfully.");
22+
case "No"
23+
disp("Dataset not downloaded. You will need to download the dataset to run the example. Please run DownloadData.")
24+
end
25+
else
26+
disp("Dataset found.");
27+
end
28+

HelperFiles/OpenPart1.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
% Copyright 2020 The MathWorks, Inc.
2+
3+
edit Part01_DataPreparation.mlx

HelperFiles/OpenPart2.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
% Copyright 2020 The MathWorks, Inc.
2+
3+
edit Part02_Modeling.mlx

HelperFiles/OpenPart3.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
% Copyright 2020 The MathWorks, Inc.
2+
3+
edit Part03_Deployment.mlx

Images/bearingsignal.png

20.8 KB

Images/confusionmat.png

18.4 KB

Images/deeplearningworkflow.png

37.1 KB

Part01_DataPreparation.mlx

199 KB
Binary file not shown.

Part02_Modeling.mlx

485 KB
Binary file not shown.

Part03_Deployment.mlx

337 KB
Binary file not shown.

0 commit comments

Comments
 (0)