mindsdb / mindsdb_sql

SQL parser and planner used by MindsDB
https://mindsdb.com
GNU General Public License v3.0
55 stars 21 forks source link

Create/finetune model source table #350

Closed ea-rus closed 5 months ago

ea-rus commented 8 months ago

Add more options to define source data for create/retrain/finetune model

Current option:

FINETUNE code_helper FROM  files(
      SELECT * from file_name
)

Add access by table name:

FINETUNE code_helper FROM  file.file_name

Add access by mindsdb query:

FINETUNE code_helper FROM  (
      SELECT * from files.file_name
)
ea-rus commented 5 months ago

Option 3 is done in:

I think option 2 is not required