-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
29 lines (22 loc) · 940 Bytes
/
Makefile
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
help:
@echo "make regression : For running Gradient Descent Regression model on random dataset"
@echo "make polynomial_features : For testing tranformation built similar to sklearn’s polynomial preprocessing"
@echo "make normal_regression : To check how theta vary with degree"
@echo "make poly_theta : To check how theta vary with degree in polynomial features"
@echo "make contour : For generating a contour of the gradient descent"
@echo "make compare_time : For comparing time taken by normal regression and gradient descent"
@echo "make collinear : For checking the feature dependency (collinear features)"
regression:
@ python linear_regression_test.py
polynomial_features:
@ python poly_features_test.py
normal_regression:
@ python Normal_regression.py
poly_theta:
@ python degreevstheta.py
contour:
@ python plot_contour.py
compare_time:
@ python compare_time.py
collinear:
@ python collinear_dataset.py