Skip to content

Commit

Permalink
Merge branch 'main' into fix/datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkall authored Aug 12, 2024
2 parents b379fff + a17c6e3 commit 082e7da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"dataclasses",
"transformers[torch]==4.26",
"datasets",
"nltk",
"nltk<=3.8.1", # 3.8.2 doesn't work with mlflow
"rouge_score",
"hcrystalball==0.1.10",
"seqeval",
Expand Down Expand Up @@ -117,14 +117,14 @@
"hf": [
"transformers[torch]==4.26",
"datasets",
"nltk",
"nltk<=3.8.1",
"rouge_score",
"seqeval",
],
"nlp": [ # for backward compatibility; hf is the new option name
"transformers[torch]==4.26",
"datasets",
"nltk",
"nltk<=3.8.1",
"rouge_score",
"seqeval",
],
Expand Down
4 changes: 4 additions & 0 deletions test/automl/test_forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,10 @@ def test_numpy():
print(automl.predict(12))


@pytest.mark.skipif(
sys.platform in ["darwin"],
reason="do not run on mac os",
)
def test_numpy_large():
import numpy as np
import pandas as pd
Expand Down

0 comments on commit 082e7da

Please sign in to comment.