Skip to content

Commit d14e68e

Browse files
committed
backmerged
1 parent 4378318 commit d14e68e

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

ads/feature_store/execution_strategy/spark/spark_execution.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,11 @@ def _save_offline_dataframe(
229229

230230
logger.info(f"output features for the FeatureGroup: {output_features}")
231231
# Compute Feature Statistics
232-
232+
233233
feature_statistics = StatisticsService.compute_stats_with_mlm(
234234
statistics_config=feature_group.oci_feature_group.statistics_config,
235-
input_df=featured_data)
235+
input_df=featured_data,
236+
)
236237

237238
except Exception as ex:
238239
error_details = str(ex)

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"huggingface": ["transformers"],
7575
"great-expectations": ["great-expectations==0.15.39"],
7676
"mlm_insights": ["mlm_insights==0.1.0.dev1"],
77-
"pyarrow": ["pyarrow"]
77+
"pyarrow": ["pyarrow"],
7878
}
7979

8080
this_directory = Path(__file__).parent
@@ -173,9 +173,5 @@ def update_extra_with_internal_packages():
173173
"Github": "https://github.com/oracle/accelerated-data-science",
174174
"Documentation": "https://accelerated-data-science.readthedocs.io/en/latest/index.html",
175175
},
176-
entry_points={
177-
'console_scripts': [
178-
'ads=ads.cli:cli'
179-
]
180-
},
176+
entry_points={"console_scripts": ["ads=ads.cli:cli"]},
181177
)

0 commit comments

Comments
 (0)