Max Stepanov

Results 31 issues of Max Stepanov

### Short description of what should be added or improved [That PR ](https://github.com/mindsdb/mindsdb/pull/4359) bring few new changes: In `config.json` auth-related keys for mysql and mongo api moved from `api` sections...

documentation

coming soon

deploy-to-dev
deploy-to-hackathon

## Description If exception can not be pickled (pickle.loads(pickle.dumps(e))) then it may lead to termination of the ML process. Also in this case, the error sent to the user will...

### Short description of current behavior If use GUI then no one of this two queries can not be executed via `shift + enter`: ```sql select 1; /* comment */...

bug

At the moment model that trained on GPU can be `finetuned` only on GPU. Will be good to be able make it on CPU. Currently error is: ``` RuntimeError: Attempting...

enhancement

## Description Encrypt integrations connection args and tabs content. Not encrypted tab structure is like: ```json { "index": 1, "name": "tab name", "content": "select * from table" } ``` Encrypted...

### Short description of what should be added or improved There is no more `jobs_history` table for each project. Instead, a new table `jobs_history` has been added to the `log`...

documentation

Let assume there are TS model created: ```sql CREATE MODEL mindsdb.house_sales_model FROM example_db (SELECT * FROM demo_data.house_sales) PREDICT ma ORDER BY saledate GROUP BY type WINDOW 8 HORIZON 4; ```...

enhancement
planner

query: ``` result_df = dfsql.sql_query( 'select name, status from predictors', ds_kwargs={'case_sensitive': False}, reduce_output=False, predictors=predictors_df ) ``` error: ``` Traceback (most recent call last): File "", line 1, in File "/home/maxs/dev/mdb/venv38/sources/dfsql/dfsql/__init__.py",...

bug