2d54f37a13c9cbb7cf22eb682caf232f6ebe56a5,integration_testing/run_a_file.py,,,#,4
Before Change
import mindsdb
mdb = mindsdb.MindsDB(send_logs=False)
mdb.learn(
from_data="marvel_wiki.csv",
predict="FIRST_APPEARANCE",
model_name="run_a_file"
)
print("!------------- Learning ran successfully -------------!")
""":
features = {}
After Change
from mindsdb import *
MindsDB().learn(
from_data="train.csv",
predict="Survived",
model_name="titanic_model"
)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: mindsdb/mindsdb
Commit Name: 2d54f37a13c9cbb7cf22eb682caf232f6ebe56a5
Time: 2019-02-17
Author: george@cerebralab.com
File Name: integration_testing/run_a_file.py
Class Name:
Method Name:
Project Name: mindsdb/mindsdb
Commit Name: b3cb84ea4b7d1ec680eb5a630bb41f7dbdf2384c
Time: 2019-02-17
Author: jorge.torres.maldonado@gmail.com
File Name: mindsdb/libs/phases/model_trainer/model_trainer.py
Class Name:
Method Name: test
Project Name: mindsdb/mindsdb
Commit Name: fbc5bf8adecec1d07207bbd27ecb175083632763
Time: 2019-02-23
Author: george@cerebralab.com
File Name: docs/examples/nlp/train.py
Class Name:
Method Name: