forked from UBC-MDS/Coffee_quality_rating_predictor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.dot
42 lines (42 loc) · 1.2 KB
/
Makefile.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
31
32
33
34
35
36
37
38
39
40
41
42
digraph G {
n2[label="all", color="red"];
n14[label="data/processed/test_df.csv", color="green"];
n7[label="data/processed/train_df.csv", color="green"];
n9[label="data/raw/coffee_ratings.csv", color="green"];
n3[label="reports/coffee_rating_prediction_report.html", color="green"];
n4[label="reports/coffee_rating_prediction_report.rmd", color="green"];
n5[label="results/images/correlation_matrix_heatmap.png", color="green"];
n16[label="results/images/feature_importance_rfc_plot.png", color="green"];
n15[label="results/images/feature_importance_rfr_plot.png", color="green"];
n11[label="results/images/target_histogram.png", color="green"];
n12[label="results/model_comparison.csv", color="green"];
n10[label="src/download_data.py", color="green"];
n13[label="src/ml_analysis.py", color="green"];
n6[label="src/plot_visualisations.py", color="green"];
n8[label="src/prepare_data.py", color="green"];
n3 -> n2 ;
n9 -> n14 ;
n8 -> n14 ;
n9 -> n7 ;
n8 -> n7 ;
n10 -> n9 ;
n4 -> n3 ;
n5 -> n3 ;
n16 -> n3 ;
n15 -> n3 ;
n11 -> n3 ;
n12 -> n3 ;
n7 -> n5 ;
n6 -> n5 ;
n14 -> n16 ;
n7 -> n16 ;
n13 -> n16 ;
n14 -> n15 ;
n7 -> n15 ;
n13 -> n15 ;
n7 -> n11 ;
n6 -> n11 ;
n14 -> n12 ;
n7 -> n12 ;
n13 -> n12 ;
}