windowshopr

Results 85 comments of 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: ![image](https://user-images.githubusercontent.com/40477419/232662798-9643c1ae-7d92-44ae-931b-62e230fe12d5.png) ![image](https://user-images.githubusercontent.com/40477419/232662896-c561cc76-b7b6-40e9-ba22-98a43e58cbdf.png) 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...

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: ![image](https://github.com/hibiken/asynqmon/assets/40477419/aaffbc85-3a58-4c4e-9153-fbc872e2d8ff)

Fixed with this: ``` const store = configureStore({ reducer: rootReducer, preloadedState: preloadedState as Partial, }); ``` ...Now presented with this in browser: ![image](https://github.com/hibiken/asynqmon/assets/40477419/a010ea37-7034-4151-a1c4-5015cd31c22f)

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...