Skip to content

Commit

Permalink
machine learning ab testing
Browse files Browse the repository at this point in the history
  • Loading branch information
tigist13 committed Sep 3, 2022
1 parent 2227507 commit f2a3f3f
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
Binary file added scripts/__pycache__/decision_tree.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file added scripts/__pycache__/random_forest.cpython-39.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/logistic_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def calculate_loss_function(actual, pred):
rootmeansquareerror = np.sqrt(mean_squared_error(actual, pred))
return rootmeansquareerror

class LRModel:
class LogesticRegressionModel:
def __init__(self, X_train, X_test, y_train, y_test):

self.X_train = X_train
Expand Down

0 comments on commit f2a3f3f

Please sign in to comment.