-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dataflow changes #1018
Dataflow changes #1018
Changes from all commits
23bd072
8cfdcad
4c60dd3
a9a9b05
5cf2b6d
320aeeb
21a813d
8149235
3838d2a
3b1be52
a2bb627
72f2e2d
3986ceb
09cd6eb
7a3d109
3bd0b3d
760ab65
514f46f
17966f5
e14237f
723a763
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -369,11 +369,7 @@ def _generate_report(self): | |
logger.debug(f"Full Traceback: {traceback.format_exc()}") | ||
|
||
model_description = rc.Text( | ||
"Prophet is a procedure for forecasting time series data based on an additive " | ||
"model where non-linear trends are fit with yearly, weekly, and daily seasonality, " | ||
"plus holiday effects. It works best with time series that have strong seasonal " | ||
"effects and several seasons of historical data. Prophet is robust to missing " | ||
"data and shifts in the trend, and typically handles outliers well." | ||
"""Prophet is a procedure for forecasting time series data based on an additive model where non-linear trends are fit with yearly, weekly, and daily seasonality, plus holiday effects. It works best with time series that have strong seasonal effects and several seasons of historical data. Prophet is robust to missing data and shifts in the trend, and typically handles outliers well.""" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is what DeepSeek things sounds better: Prophet is a time-series forecasting tool that uses an additive model. It models non-linear trends and incorporates yearly, weekly, and daily seasonality, as well as the impact of holidays. Prophet is particularly effective for time series exhibiting strong seasonality and benefiting from multiple years of historical data. It's designed to be resilient to missing data, shifts in trends, and outliers. |
||
) | ||
other_sections = all_sections | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,27 +157,26 @@ forecast = [ | |
"oci-cli", | ||
"py-cpuinfo", | ||
"rich", | ||
"autots[additional]", | ||
"autots", | ||
"mlforecast", | ||
"neuralprophet>=0.7.0", | ||
"numpy<2.0.0", | ||
"oci-cli", | ||
"optuna", | ||
"oracle-ads", | ||
"pmdarima", | ||
"prophet", | ||
"shap", | ||
"sktime", | ||
"statsmodels", | ||
"plotly", | ||
"oracledb", | ||
"report-creator==1.0.28", | ||
"report-creator==1.0.32", | ||
] | ||
anomaly = [ | ||
"oracle_ads[opctl]", | ||
"autots", | ||
"oracledb", | ||
"report-creator==1.0.28", | ||
"report-creator==1.0.32", | ||
"rrcf==0.4.4", | ||
"scikit-learn<1.6.0", | ||
"salesforce-merlion[all]==2.0.4" | ||
|
@@ -186,7 +185,7 @@ recommender = [ | |
"oracle_ads[opctl]", | ||
"scikit-surprise", | ||
"plotly", | ||
"report-creator==1.0.28", | ||
"report-creator==1.0.32", | ||
] | ||
feature-store-marketplace = [ | ||
"oracle-ads[opctl]", | ||
|
@@ -202,7 +201,7 @@ pii = [ | |
"scrubadub_spacy", | ||
"spacy-transformers==1.2.5", | ||
"spacy==3.6.1", | ||
"report-creator==1.0.28", | ||
"report-creator==1.0.32", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. latest is 1.0.37 |
||
] | ||
llm = ["langchain>=0.2", "langchain-community", "langchain_openai", "pydantic>=2,<3", "evaluate>=0.4.0"] | ||
aqua = ["jupyter_server"] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the comment is factual, but why only string values? My mind went to things like pulling a host and port out of the env, but that would break with only strings being pulled in? I guess a comment explaining why only keeping strings would be useful
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a great point. It's so that the validator doesn't try to substitute anything within the pandas dataframe object.
We were getting all sorts of issues with Cerberus on a pandas df. As a first pass, removing non-string from the validator.
Ultimately most numbers get converted to string within yaml