Skip to content

Commit

Permalink
feat: fixing pyarrow installation issue and small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiagoGrabe committed Oct 21, 2024
1 parent 3e57919 commit fa4ecb7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ repository by accessing them through their GitHub link, like:
_ = mlflow.run(
f"{config['main']['components_repository']}/get_data",
"main",
version='main',
env_manager="conda",
parameters={
"sample": config["etl"]["sample"],
"artifact_name": "sample.csv",
Expand Down
2 changes: 1 addition & 1 deletion components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
In order to run these components you need to have conda (Miniconda or Anaconda) and MLflow installed.
Install it with::

> conda install mlflow=1.14.1
> conda install mlflow=2.8.1

then run::

Expand Down
1 change: 1 addition & 0 deletions components/get_data/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ channels:
dependencies:
- pip=23.3.1
- requests=2.24.0
- pyarrow
- pip:
- mlflow==2.8.1
- wandb==0.16.0
Expand Down
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def go(config: DictConfig):
f"{config['main']['components_repository']}/get_data",
"main",
version='main',
env_manager="conda",
parameters={
"sample": config["etl"]["sample"],
"artifact_name": "sample.csv",
Expand Down

0 comments on commit fa4ecb7

Please sign in to comment.