windowshopr
windowshopr
I did restart my computer after the regedit. But classic "Windows not supported" I guess, too bad. I see this specifically in the browser:   Don't know if that...
This would be a lovely feature! Right now, after building a new dataset of a huge number of features, I use FeatureSelector (https://github.com/WillKoehrsen/feature-selector) to filter out any highly correlated, low...
``` Traceback (most recent call last): File ".\forward_predict.py", line 16, in from tpot.builtins import StackingEstimator File "C:\Users\chalu\AppData\Local\Programs\Python\Python38\lib\site-packages\tpot\__init__.py", line 27, in from .tpot import TPOTClassifier, TPOTRegressor File "C:\Users\chalu\AppData\Local\Programs\Python\Python38\lib\site-packages\tpot\tpot.py", line 31, in...
Running `pip install scikit-learn` installs version `1.3.0` as of 2 days ago, so that seems to be the most recent stable version they're using. I see there's dev/beta versions higher...
I have the same error, although am attempting to run things on Windows, but that shouldn't be the issue here. I've tried running the `docker run` service with these three...
Noticed it too
For further context, I've also tried to manually running the backend server with `go run main.go --port 8085`, and then attempting to run the frontend server with `npm run start`...
Oh, and I forgot that the `packages.json` needs to modify `export` to `set` at this line in order to work on Windows: 
Fixed with this: ``` const store = configureStore({ reducer: rootReducer, preloadedState: preloadedState as Partial, }); ``` ...Now presented with this in browser: 
My initial guess here is that this: ``` agent = values["agent"] tools = values["tools"] ``` ...should be changed to this: ``` agent = values["agent"] tools = agent["tools"] ``` ...given that...