Skip to content

Commit

Permalink
update s3 path
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Mar 18, 2024
1 parent 5bf2b74 commit 9046d1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cardea/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
os.path.dirname(os.path.abspath(__file__)),
'data'
)
BUCKET = 'dai-cardea'
BUCKET = 'cardea'
S3_URL = 'https://{}.s3.amazonaws.com/{}'


Expand Down
2 changes: 1 addition & 1 deletion cardea/modeling/modeler.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Modeler:
@staticmethod
def _load_pipeline(pipeline):
mlpipeline = MLPipeline(pipeline)
hyperparameters = pipeline.get_hyperparameters()
hyperparameters = mlpipeline.get_hyperparameters()
for primitive, values in hyperparameters.items():
for hyperparam, value in values.items():
if isinstance(value, list):
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
'pydata-sphinx-theme',
'autodocsumm>=0.1.10,<1',
'ipython>=6.5,<7.5',
'Jinja2>=2,<3.1', # <- breaks docs

# style check
'flake8>=3.7.7,<4',
Expand Down

0 comments on commit 9046d1b

Please sign in to comment.