-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathrun.py
84 lines (60 loc) · 1.98 KB
/
run.py
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import argparse
import os
import joblib
import urllib.request
import pandas as pd
import sys
import pytest
from src.model import KickstarterModel as Model
TRAIN_NAME = "train.zip"
TEST_NAME = "test.zip"
DATA_DIR = "data"
JOBLIB_NAME = 'model.joblib'
def train_model():
df = pd.read_csv(os.sep.join([DATA_DIR, TRAIN_NAME]))
my_model = Model()
X_train, y_train = my_model.preprocess_training_data(df)
my_model.fit(X_train, y_train)
# Save JOB
joblib.dump(my_model, JOBLIB_NAME)
def test_model():
df = pd.read_csv(os.sep.join([DATA_DIR, TEST_NAME]))
# Load JOB
my_model = joblib.load(JOBLIB_NAME)
X_test = my_model.preprocess_unseen_data(df)
preds = my_model.predict(X_test)
print("### Your predictions ###")
print(preds)
def main():
parser = argparse.ArgumentParser(
description="A command line-tool to manage the project.")
parser.add_argument(
'stage',
metavar='stage',
type=str,
choices=['train', 'test', 'unittest', 'coverage', 'hypothesis', 'exercises'],
help="Stage to run. Either train, test, unittest, coverage, hypothesis or exercises")
if len(sys.argv[1:]) == 0:
parser.print_help()
parser.exit()
stage = parser.parse_args().stage
if stage == "train":
print("Training model...")
train_model()
elif stage == "test":
print("Testing model...")
test_model()
elif stage == "unittest":
print("Unittesting model...")
pytest.main(['-v', 'tests'])
elif stage == "coverage":
print("Running coverage...")
pytest.main(['--cov-report', 'term-missing', '--cov=src/', 'tests/'])
elif stage == "hypothesis":
print("Running hypothesis...")
pytest.main(['-v', '--hypothesis-show-statistics', 'tests/test_transformers_hypothesis.py'])
elif stage == "exercises":
print("Running the exercises...")
pytest.main(['-v', 'exercises'])
if __name__ == "__main__":
main()