Skip to content

Commit

Permalink
PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
eriklindernoren committed Jun 7, 2017
1 parent d90214b commit 89782aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
recursive-include data *
recursive-include mlfs.data *
2 changes: 1 addition & 1 deletion mlfs/supervised_learning/bayesian_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def predict(self, X, eti=False):
def main():

# Load temperature data
data = pd.read_csv('data/TempLinkoping2016.txt', sep="\t")
data = pd.read_csv('mlfs/data/TempLinkoping2016.txt', sep="\t")

time = np.atleast_2d(data["time"].as_matrix()).T
temp = np.atleast_2d(data["temp"].as_matrix()).T
Expand Down

0 comments on commit 89782aa

Please sign in to comment.