-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiagram3.dot
30 lines (24 loc) · 933 Bytes
/
diagram3.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
digraph G {
rankdir=TB;
node [shape=box, style=filled, color=lightgrey];
// First layer
EEG_Dreamer_Database [label="EEG Dreamer Database"];
// Second layer
DWT [label="DWT"];
EMD [label="EMD (IMFs)"];
Feature_Extraction [label="Feature Extraction and Selection (Anova)"];
// Third layer
Multi_Class_ML [label="Multi-class ML Based System"];
Deep_Learning_Models [label="Deep Learning Models"];
// Fourth layer
Emotions [label="9 Emotions"];
// Define layers
{ rank=same; EEG_Dreamer_Database; }
{ rank=same; DWT; EMD; Feature_Extraction; }
{ rank=same; Multi_Class_ML; Deep_Learning_Models; }
{ rank=same; Emotions; }
// Connect nodes between layers
EEG_Dreamer_Database -> { DWT; EMD; Feature_Extraction; Deep_Learning_Models };
{ DWT; EMD; Feature_Extraction } -> Multi_Class_ML;
{ Multi_Class_ML; Deep_Learning_Models } -> Emotions;
}