CMobley7

Results 12 comments of CMobley7

@twopirllc , I read through https://github.com/twopirllc/pandas-ta/issues/60. The new centered version, https://github.com/twopirllc/pandas-ta/blob/development/pandas_ta/trend/dpo.py#L54, appears to be correct, but the non-centered version, https://github.com/twopirllc/pandas-ta/blob/development/pandas_ta/trend/dpo.py#L52, shifts the `ma` instead of the `close`. The previous non-centered...

@twopirllc , It looks like https://github.com/twopirllc/pandas-ta/commit/8373fc9ed269c9b1ed27e5d715bf9c1da8f84aa0 fixed the `Relative Volatility Index` documentation; however, https://github.com/twopirllc/pandas-ta/blob/development/pandas_ta/momentum/inertia.py#L17-L26 still mentions the `Relative Vigor Index` and https://www.sierrachart.com/index.php?page=doc/StudiesReference.php&ID=285&Name=Inertia mentions the `Relative Vigor Index`, but https://www.tradingpedia.com/forex-trading-indicators/inertia-indicator/, as...

@cpu, Thank you for all your hard work in incorporating modularity into Streisand. It's a great feature. I was actually hoping to set up the base system, as well as...

@sensharma, if you're still having problems tomorrow let me know and I'll make the wheel file.

Sorry for the delay, @Awe42. I'd previously looked at the links you provided. While the `MultiInputNet` with `get_mixed_dls` would allow you to use a `time series` and `tabular` models together,...

This should work for binary classification. I haven't figured out multiclass classification yet. ``` def custom_metric(y, y_pred, **kwargs): tp = np.where((y_pred==1) & (y==1), (100), 0) fp = np.where((y_pred==1) & (y==0),...

Optuna's implementation here, https://optuna.readthedocs.io/en/stable/reference/generated/optuna.integration.lightgbm.LightGBMTunerCV.html, allows you to send in your own folds; so, ``` tscv = TimeSeriesSplit(n_splits=cv if cv is not None else 5) folds = list(tscv.split(X_train)) ``` Though mlxtend's...

It looks like the folds param could be added nicely to this function: https://github.com/ThomasBury/arfs/blob/main/src/arfs/feature_selection/allrelevant.py#L2188. Also, using fasttreeshap already defaults to false. Would you accept a PR that did these two...

I get the same error using lightgbm version `4.0.0`

Hi @sestinj Thank you for the quick fix on the `Malformed JSON` error! I really appreciate it. I restarted my TGI server with `--max-stop-sequences` set to a high number and...