Questions tagged [turi]

17 questions
4
votes
1 answer

Object detection using turicreate

I was exploring turicreate ObjectDetector API. The documentation mentions it is a trained model. I wanted to know if I can use this trained model & detect the 1000 labels which was used to originally train this turi model. All the examples mention…
Kalava
  • 231
  • 2
  • 4
  • 18
3
votes
1 answer

Installing Graphlab create on Anaconda on Windows 10 (Python, Machine Learning)

I'm following this tutorial on youtube to install graphlab creat, but when I try to go to https://turi.com/download/install-graphlab-create-command-line.html and create an account on graphlab create and get a license to complete the installation I…
2
votes
0 answers

graphlab figures not displaying in jupyter notebooks hosted on github

I have a notebook that uses both matplotlib and graphlab to create figures. I'm hosting this notebook on my github, and I want to display all the figures I had displayed locally. matplotlib figures show, but graphlab figures don't. Notebook is…
brienna
  • 1,415
  • 1
  • 18
  • 45
2
votes
1 answer

Image classifier without softmax

I'm using Turi Create to generate a Core ML image classifier like this: import turicreate as tc data = tc.SFrame('data.sframe') model = tc.image_classifier.create(data, target='label') model.export_coreml('classifier.mlmodel') However, the model…
Timothy Moose
  • 9,895
  • 3
  • 33
  • 44
1
vote
3 answers

Error while installing turicreate using pip ...while building wheel for llvmlite

I am trying to install turicreate using pip install turicreate but receive the error below. I don't know what this error is telling me to do. Someone in the comments asked if I installed llvm correctly. How would I do this? I tried upgrading Scipy…
1
vote
1 answer

Coreml, Failure verifying inputs. Image is not valid

Tried to follow https://www.appcoda.com/core-ml-model-with-python/ To build pictures recognition I use Core ML(Turi Create) + Python + Swift(iOS). Tried to upload the same image that I've used to train for ".mlmodel" file. Didn't help. Tried to load…
J A S K I E R
  • 1,976
  • 3
  • 24
  • 42
1
vote
1 answer

How to import apple core motion dataset in turi create?

I've recently discovered that apple core motion data (accelerometer, gyroscope etc) can be used to create learning models. The link below shows an…
AlbF
  • 51
  • 1
  • 3
  • 11
1
vote
2 answers

Annotations causing errors with Object Detection in Turi Create

The guide for Object Detection in Turi Create doesn't cover setting up the data, including how to attach the "annotations" category. What I've done is to create a separate annotations file, which looks like this: { "1.jpg": { "type":…
Andrew
  • 7,693
  • 11
  • 43
  • 81
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
0 answers

Error in installing Turi Create on Windows

I am using Windows 10 and run Jupyter Notebook on Anaconda. At first I wanted to install Turi Create on Anaconda but failed to do so. Then I started installing Turi Create through WSL using Ubuntu. But after running the command $pip install…
0
votes
1 answer

SFrame connection

I am taking the ML course from Coursera. I had an error when I had to call SFrame. The same problem was asked around 2 years ago. The problem was when I had to type the sf because I had the following message: import graphlab sf =…
Thanos B
  • 1
  • 1
0
votes
2 answers

Object Detection in turicreate (turicreate-5.0b2) returns empty predictions array

Hi i am using object detection feature with TuriCreate using 2 class identifiers with 60 images, and i train the data succefully like in the instructions but i'm getting empty predictions when predicting on test data. Installed turicreate-5.0b2 on…
0
votes
1 answer

ImportError: libblas.so.3

After installation of turicreate, when I am importing it import turicreate I am getting the following error: Traceback (most recent call last): File "", line 1, in File…
shan
  • 553
  • 2
  • 9
  • 25
0
votes
1 answer

error reading protobuf spec. validator error: The. mlmodel supplied is of version 3, intended for a newer version of xcode

I'm running this out-of-the-box turi python code: import turicreate as tc # Load the data data = tc.SFrame('annotations.sframe') # Make a train-test split train_data, test_data = data.random_split(0.8) # Create a model model =…
Amir A.Eitan
  • 183
  • 1
  • 12
0
votes
1 answer

Turi Create - Please use dropna() to drop rows

I am having issues with Apple Turi Create and image classifier. I have successfully created a model with 22 categories. I have recently added 5 more categories and console is giving me error warning Please use dropna() to drop rows with missing…
Alessign
  • 768
  • 9
  • 17
1
2