Turi Create simplifies the development of custom machine learning models. Add recommendations, object detection, image classification, image similarity or activity classification to an app.
Questions tagged [turi-create]
76 questions
0
votes
0 answers
Converged early at 10 iterations CreateML
Am training image classifier dataset via CreateML but its keeps stopping at 10 iteration saying converged early at 10 iterations.
My Training accuracy varied from 80-88 and validation of 70.2% for 10 iterations.
Evaluation Precision was…

Divine
- 118
- 1
- 9
0
votes
1 answer
turicreate windows(wsl ubuntu) cannot open csv file for reading
I installed a wsl Ubuntu 20.04 LTS release on windows to use the turicreate. but im having some problems using the csv file I moved it from my download folder on to /home/user where the venv folder is located. on the first line I !pip install…

Kenjie Thio-ac
- 75
- 1
- 10
0
votes
1 answer
How to use turicreate in Anaconda navigator
I created a new conda environment and installed turicreate. How can I start anaconda navigator within this new environment? Currently I start navigator from the base environment and then switch to the new environment. When I do this, I can see…

cgaters
- 21
- 2
- 5
0
votes
1 answer
Turi Create rescales and moves my object annotations coordinates
I created and merged an images SFrame with an Annotations SFrame.
I have verified that the coordinates of the annotation boxes matches the location of the features measured in Photoshop.
However the models I create are non-functional, so I explored…

BlueskyMed
- 765
- 7
- 24
0
votes
1 answer
Unable to pip turicreate in conda environment on Windows 8.1
I am new to conda and I was trying to use turicreate package.
turicreate is not provided by conda by default.
I have gone through some similar questions about installing packages in conda.
Found that creating an environment is required and then…

Surya Ganesh
- 492
- 1
- 6
- 15
0
votes
1 answer
Continue training CoreML Model
I'm trying to get a better understanding on how to create object detection models in Turi Create (for usage in CoreML). I'm trying to create a model that detects custom images I designed and printed myself. To avoid having to take a huge amount of…

Karim Stekelenburg
- 633
- 12
- 26
0
votes
1 answer
Convert TuriCreate Image to OpenCV Mat
Is there a way to convert images loaded using image_analysis.load_images() to the cv::mat format?
I am using the OpenCV HOG detector and am stuck bridging the gap between Turi Images and OpenCV.
Thanks!

Gene Z. Ragan
- 2,643
- 2
- 31
- 41
0
votes
3 answers
Unable to Import 'turicreate' Module
I installed 'turicreate' using the command pip3 install turicreate, but still I get the follwing error
import turicreate as tc
Error:
ModuleNotFoundError Traceback (most recent call last)
in…

Robin
- 61
- 2
- 7
0
votes
1 answer
turicreate visualizing decision tree
Having performed this in turicreate in jupyter noteboopk:
small_model = turicreate.decision_tree_classifier.create(train_data,
validation_set=None,
…

thebluephantom
- 16,458
- 8
- 40
- 83
0
votes
1 answer
Any ideas on why my coreml model created with turicreate isn't working?
Pretty much brand new to ML here. I'm trying to create a hand-detection CoreML model using turicreate.
The dataset I'm using is from https://github.com/aurooj/Hand-Segmentation-in-the-Wild , which provides images of hands from an egocentric…

derekahc
- 910
- 2
- 12
- 20
0
votes
1 answer
How to convert Turi Create created CoreML models to Keras?
I'm looking for a way to do the conversion, the only information I've found is how to go from Keras and other to CoreML.

wmatt
- 695
- 2
- 7
- 19
0
votes
0 answers
Error trying to install Turicreate in Anaconda with Python 3.5 under Windows 10
I am trying to install Turicreate using Anaconda and Python 3.5 in Windows 10 using the following command:
pip install -U turicreate
I have followed the exact steps on the official page and still getting this error after executing the previous…

Abdul Razak Zakieh
- 656
- 8
- 14
0
votes
1 answer
Failed to install turicreate by anaconda
Got modulenotfounderror when I try to import turicreate in my python file.
I've installed Anaconda and use the following statements to install turicreate:
conda create -n turi python=3.7 anaconda
source activate turi
pip install turicreate
got…

Poppy Bee
- 154
- 2
- 3
- 11
0
votes
1 answer
Using Turi Create Object Detection with CUDA 8.0 on AWS SageMaker Notebook
As the title says, I am attempting to use Turi Create on an AWS SageMaker Notebook instance with Python 3.6 (conda_amazonei_mxnet_p36 environment). Even though CUDA 10.0 is installed by default, CUDA 8.0 also comes pre-installed and can be selected…

Dallan
- 504
- 4
- 13
0
votes
1 answer
'filter' object has no attribute 'append' on evaluate a model
I am trying to make an MLModel for use it on my app and I do it with python, since I wanna get confusion_matrix with evalute() func
here is my python code:
import turicreate as tc
import matplotlib.pyplot as plt
import os
train_data =…

mohsen
- 4,698
- 1
- 33
- 54