File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed
ads/feature_store/execution_strategy/spark Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -229,10 +229,11 @@ def _save_offline_dataframe(
229
229
230
230
logger .info (f"output features for the FeatureGroup: { output_features } " )
231
231
# Compute Feature Statistics
232
-
232
+
233
233
feature_statistics = StatisticsService .compute_stats_with_mlm (
234
234
statistics_config = feature_group .oci_feature_group .statistics_config ,
235
- input_df = featured_data )
235
+ input_df = featured_data ,
236
+ )
236
237
237
238
except Exception as ex :
238
239
error_details = str (ex )
Original file line number Diff line number Diff line change 74
74
"huggingface" : ["transformers" ],
75
75
"great-expectations" : ["great-expectations==0.15.39" ],
76
76
"mlm_insights" : ["mlm_insights==0.1.0.dev1" ],
77
- "pyarrow" : ["pyarrow" ]
77
+ "pyarrow" : ["pyarrow" ],
78
78
}
79
79
80
80
this_directory = Path (__file__ ).parent
@@ -173,9 +173,5 @@ def update_extra_with_internal_packages():
173
173
"Github" : "https://github.com/oracle/accelerated-data-science" ,
174
174
"Documentation" : "https://accelerated-data-science.readthedocs.io/en/latest/index.html" ,
175
175
},
176
- entry_points = {
177
- 'console_scripts' : [
178
- 'ads=ads.cli:cli'
179
- ]
180
- },
176
+ entry_points = {"console_scripts" : ["ads=ads.cli:cli" ]},
181
177
)
You can’t perform that action at this time.
0 commit comments