diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 0a0a159..f6f1550 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -1,5 +1,6 @@ steps: - name: 'gcr.io/cloud-builders/docker' - args: ['build', '-t', 'gcr.io/dtumlops-335110/testing', '.'] + args: ['build', '-t', 'gcr.io/ dtumlops-410714/testing_m21', '.'] - name: 'gcr.io/cloud-builders/docker' - args: ['push', 'gcr.io/dtumlops-335110/testing'] \ No newline at end of file + args: ['push', 'gcr.io/ dtumlops-410714/testing_m21'] + diff --git a/main.py b/main.py index a433ba9..394401d 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,6 @@ from sklearn import datasets, svm, metrics from sklearn.model_selection import train_test_split - +#This looks good! I made a change here :) if __name__ == '__main__': digits = datasets.load_digits() @@ -24,7 +24,7 @@ predicted = clf.predict(X_test) print( - f"Classification report for classifier {clf}:\n" + f"Classification report for classifier from skaftes original, pushed to local repo {clf}:\n" f"{metrics.classification_report(y_test, predicted)}\n" )