Questions tagged [turi-create]

Turi Create simplifies the development of custom machine learning models. Add recommendations, object detection, image classification, image similarity or activity classification to an app.

76 questions
1
vote
0 answers

Turi Create - stuck at “Starting brute force nearest neighbors model training”

I’m following Turi Create tutorial on Image Similarity https://apple.github.io/turicreate/docs/userguide/image_similarity/ I got stuck at: Starting brute force nearest neighbors model training. In [ ]: Its been 14 hours already, tried 2 times and it…
Mane Manero
  • 3,086
  • 5
  • 25
  • 47
1
vote
2 answers

Training on a big set of high-res pictures with turicreate out of memory

I'm trying to use Turicreate to train a model on some 150 pictures that are pretty high-res (4Mb each, 3000X5000). I'm running model = tc.object_detector.create(train_data, max_iterations=10) and after a while I'm getting and 'low virtual memory'…
Amir A.Eitan
  • 183
  • 1
  • 12
1
vote
1 answer

How to install turicreate in mac

When i try to install turicreate in my mac machine its showing the following error: Collecting turicreate Could not fetch URL https://pypi.python.org/simple/turicreate/: There was a problem confirming the ssl certificate: [SSL:…
Akash
  • 91
  • 2
  • 12
1
vote
1 answer

Error when installing turicreate

I'm trying to install a package called turicreate on my device. I want to use it in code written in python 2.7 I have both python 3.6 and python 2.7 on my device so I'm trying to use the command: $ python2.7 -m pip install turicreate and then I…
Abe44
  • 45
  • 6
1
vote
2 answers

Trying to teach coreML model with turicreate but don't know how to access file

I am trying to make a coreML model using turicreate. (This is my first time touching python) Lets say I have five files, "dog", "cat", "pigeon", "squirrel", "raccoon". How can I change this code so that the program to access and train it. import…
Yuto
  • 658
  • 2
  • 8
  • 20
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
0 answers

Unable to Import Turicreate into Jupyter

When I try to import turicreate into Jupyter I receive the following error: ValueError Traceback (most recent call last) in ----> 1 import…
0
votes
0 answers

I'm encountering an error while installing turicreate module on wsl, is there any requirements I'm missing?

whenever I try to install turicreate module on wsl it's showing an error like this `Collecting turicreate Using cached turicreate-6.4.tar.gz (1.9 kB) Preparing metadata (setup.py) ... done Using legacy 'setup.py install' for turicreate, since…
0
votes
0 answers

Is early stopping happening for turi-create one_shot_object_detector? if so how to configure it?

I am training an object detector using apple's turi-create. The steps I am following is very similar to what is in the documentaion from apple- https://apple.github.io/turicreate/docs/userguide/one_shot_object_detection/ we could pass the…
0
votes
0 answers

I want to install wsl

Enable-WindowsOptionalFeature : Feature name Microsoft-Windows-Subsytem-Linux is unknown. At line:1 char:1 + Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows- ... +…
0
votes
0 answers

How can I limit the number of results shown .show() in turicreate

I'm trying to create a histogram to show how many times a song appears in an SArray. The histogram output contains all the songs in the column and the all results are nearly invisible by compared to the "Other" rows which has shows all the not…
0
votes
1 answer

I am unable to install Turi Create on Mac M1

Please help me out I am unable to install Turicreate I have referred to the website https://github.com/apple/turicreate I have Python 3.8.0 installed currently which suits the system requirements. I have followed the steps: pip install…
0
votes
1 answer

ValueError when calling activity_classifier.create(...) method

I am using TuriCreate to create model to classify a human activity, but I get error when I try to run activity_classifier.create(...) method. Code This is what I did: Load all data: train_sf = tc.SFrame("data/cleaned_train_sframe") valid_sf =…
Mushu
  • 31
  • 9
0
votes
1 answer

Error while trying to run Jupyter Notebook on virtualenv

I wanted to install and use Turi Create on my Windows 10 system and I followed this tutorial: https://medium.com/@malondireads/installing-turicreate-on-windows-10-534e147a4792 However, I get an error when I try to run the 'jupyter notebook'. The…
0
votes
1 answer

Training with GPU an object detection model on colab with Turicreate

It's days that I'm trying to train an object detection model on Google Colab using GPU with TuriCreate. According to the TuriCreate's repository, to use gpu during training you must follow these…