Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Upgrade dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dtsato committed Nov 25, 2019
1 parent 057b9ef commit 886f058
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .dvc/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
/updater.lock
/state-journal
/state-wal
/cache
/cache
/tmp
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ Instructions for each exercise can be found under the
*WARNING: the exercises build on top of each other, so you will not be able to
skip steps ahead without executing them.*

*WARNING 2: the workshop requires infrastructure that we only provision when
needed, therefore you won't be able to execute the exercises on your own that
require that shared infrastructure. We are working on a setup that allows
running the workshop locally, but that is work in progress.*

## The Machine Learning Problem

We built a simplified solution to a Kaggle problem posted by Corporación Favorita,
Expand Down
21 changes: 11 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
dvc[gs]==0.35.7
numpy==1.16.3
pandas==0.24.2
pylint==2.1.1
pytest==4.4.1
scikit-learn==0.20.3
flask==1.0.2
mlflow==0.9.1
lime==0.1.1.33
fluent-logger==0.9.3
dvc[gs]==0.70.0
numpy==1.17.4
pandas==0.25.3
pylint==2.4.4
pytest==5.3.0
scikit-learn==0.21.3
flask==1.1.1
mlflow==1.4.0
lime==0.1.1.36
fluent-logger==0.9.4
s3fs==0.1.2
seaborn==0.9.0
joblib==0.14.0
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from flask import Flask, render_template, jsonify, request
from datetime import datetime
from sklearn.externals import joblib
import joblib
import pandas as pd
import decision_tree
import os
Expand Down
2 changes: 1 addition & 1 deletion src/decision_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pandas as pd
import sys, os, json
from sklearn.preprocessing import LabelEncoder
from sklearn.externals import joblib
import joblib
sys.path.append(os.path.join('..', 'src'))
sys.path.append(os.path.join('src'))
from sklearn import tree, ensemble, metrics
Expand Down

0 comments on commit 886f058

Please sign in to comment.