I try to analyze the multivariable with LinearRegression (e.g. randomforest, sklearn etc.) dataframe with Python.
However, it shows a huge RMSE so I try to apply non-linear regression to my data.
I want to run a non-linear regression to predict value of commodities, with lots of data (e.g. Quality, produced year, factory number, overall condition & lots of categories ..).
I try to find on Google and Stackoverflow, but I can find only using curve_fit, polyfit way which already predict the functional form between X and Y. Besides, my input data key value is larger than 10 so I want to using ML or some other packages to apply non-linear regression.
Please help and advise me!