Open In App

TuriCreate library in Python

TuriCreate(Machine Learning Python Library):
Custom Machine Learning models can be made using Turi create very easily. You don’t have to be an expert in Machine Learning to use Turi create and it helps in building an add recommendations, object detection, image classification, image similarity or activity classification systems easily.

Advantages of TuriCreate:



Supported Platform for TuriCreate:

Turicreate uses SFrames for data handling:
SFrames means scalable data frame. It is a tabular, column-mutable data frame object that can scale to big data. It’s one of the advantages is that is mutable.



Code: How to use SFrame for Loading the data:




import turicreate as tc
from turicreate import SFrame
  
# Let's declare a variable for loading the data
data = tc.SFrame("data.csv")
  
# Here data.csv is a file stored in your system
# with name = data

Data Structure of TuriCreate:

Article Tags :