Skip to content

Commit

Permalink
move ml module directory
Browse files Browse the repository at this point in the history
  • Loading branch information
amesval committed Mar 24, 2024
1 parent 3750fab commit 891d9e4
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 120 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion starter/starter/conftest.py → starter/ml/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from starter.ml.model import (
from ml.model import (
train_model,
save_model_attributes,
load_model_attributes,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion starter/starter/ml/model.py → starter/ml/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# from sklearn.linear_model import LogisticRegression
from sklearn.ensemble import RandomForestClassifier
import numpy as np
from starter.ml.data import process_data
from ml.data import process_data
import pickle


Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from sklearn.model_selection import train_test_split
import pandas as pd
import numpy as np
from starter.ml.data import process_data
from starter.ml.model import (
from ml.data import process_data
from ml.model import (
train_model,
save_model_attributes,
load_model_attributes,
Expand Down
Empty file removed starter/starter/ml/__init__.py
Empty file.
33 changes: 0 additions & 33 deletions starter/starter/ml/conftest.py

This file was deleted.

83 changes: 0 additions & 83 deletions starter/starter/test_functions.py

This file was deleted.

0 comments on commit 891d9e4

Please sign in to comment.