Skip to content

Commit f70f03e

Browse files
committed
= comments, todo fixed
1 parent 703f947 commit f70f03e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

configs/linear_regression_cfg.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
cfg = EasyDict()
66
cfg.dataframe_path = os.path.basename("linear_regression_dataset.csv")
7-
# TODO list of basis functions
7+
# list of basis functions in execute file
88
cfg.base_functions = []

utils/metrics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33

44
def MSE(predictions: np.ndarray, targets: np.ndarray) -> float:
5-
"""Todo calculate loss of your model without loops"""
5+
"""calculate loss of your model without loops"""
66
return sum((predictions - targets.T) ** 2) / len(targets)

utils/visualisation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Visualisation:
99
def visualise_predicted_trace(
1010
prediction: np.ndarray, inputs: np.ndarray, targets: np.ndarray, plot_title=""
1111
):
12-
# TODO visualise predicted trace and targets
12+
# visualise predicted trace and targets
1313
"""
1414
1515
:param prediction: model prediction based on inputs (oy for one trace)

0 commit comments

Comments
 (0)