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
54
votes
8 answers

How to install CUDA in Google Colab GPU's

It seems that Google Colab GPU's doesn't come with CUDA Toolkit, how can I install CUDA in Google Colab GPU's. I am getting this error in installing mxnet in Google Colab. Installing collected packages: mxnet Successfully installed…
10
votes
4 answers

Why are Google Colab shell commands not working?

Steps to reproduce: Open new Colab notebook on GPU !ls #works !pip install -q turicreate import turicreate as tc !ls #doesn't work I get the following…
Frankie
  • 11,508
  • 5
  • 53
  • 60
6
votes
2 answers

ERROR: Could not install packages due to an EnvironmentError: [Errno 28] No space left on device

I was trying to install turicreate using pip install -U turicreate But got the error Could not install packages due to an EnvironmentError: [Errno 28] No space left on device.I followed all the steps on the installation instructions. Does…
Jeremiah Ngugi
  • 61
  • 1
  • 1
  • 3
5
votes
1 answer

Unable to install turicreate in anaconda

I am trying to install turicreate in anaconda but i unable to do it. I tried to run a command conda install -c derickl turicreate but promt gives an error Solving environment: failed PackagesNotFoundError: The following packages are not available…
5
votes
0 answers

The Kernel appears to have died. Always when I am loading a large file

I am using Jupyter notebooks for creating a ML Model with TuriCreate. The steps that I am following are the above. I have download a .csv and .json (same file) from https://www.kaggle.com/zynicide/wine-reviews The file has 51 MB size. I have made an…
P S
  • 527
  • 4
  • 18
5
votes
2 answers

Unable to install "Turicreate" on my Windows 10

I am new to Python and I am trying to build a recommendation engine by following a tutorial. The tutorials asks me to install turicreate, I am running Spyder 3.3.0 (Python version 3.5) on Anaconda. WHAT I TRIED - I sought help from various SO…
SSV
  • 149
  • 2
  • 12
4
votes
1 answer

CoreML on-device model training with tabular data

I'm trying to build an app that makes suggestions (distinct classes) based on a table with 4 features: latitude, longitude, time and weekday. The training data of my app is 100% personal, so it doesn't really make sense to pre-train the model. I…
Glen
  • 387
  • 3
  • 7
4
votes
0 answers

Apple turicreate always return the same label

I'm test-driving turicreate, to resolve a classification issue, in which data consists of 10-uples (q,w,e,r,t,y,u,i,o,p,label), where 'q..p' is a sequence of characters (for now of 2 types), +,-, like…
Alex
  • 1,581
  • 1
  • 11
  • 27
3
votes
2 answers

Error installing Turicreate on ubuntu python 3.8.2 on pip

================================================================================== TURICREATE ERROR If you see this message, pip install did not find an available binary package for your system. Supported…
Robin
  • 61
  • 2
  • 7
3
votes
0 answers

Why am I getting "The resource was not found" when I target turicreate visualization to 'browser'?

First of all, I'm new to turicreate and ubuntu. I'm running turicreate on windows 10 by enabling windows subsystem for Linux. I used Ubuntu 18.04 LTS to install python, turicreate, and jupyter notebook. I cannot enable the visualization of the data…
3
votes
1 answer

Reduce size of a half precision Core ML model created with turicreate

I have a requirement for a CoreML model to be compressed to =< 24MB. This is a neural net created with Turi Create. It is for object detection. As per Apple's Documentation, I've converted the model to a half precision model (this also has an issue…
3
votes
1 answer

Not being able to use turicreate

I am trying to use turicreate. I installed it on my device (sudo python2.7 -m pip install turicreate) And when I ran my code (in terminal on Mac), I got a long error message. I believe that the significant part is as follows: ImportError:…
Abe44
  • 45
  • 6
2
votes
1 answer

Get all the data in a cell in Sframe

I am supposed to find data related to a particular value given for a column. I am given the corresponding value in col1 and need the relevant data from col2. I ran the following code using turicreate. sf1[(sf1['column_name'] ==…
2
votes
1 answer

Usage of turicreate.text_analytics.count_words

I am currently learning classification using turicreate and have a question regarding the word count vector. Using the example that I found here #build a word count vector products['word_count'] =…
wendy
  • 105
  • 1
  • 1
  • 6
2
votes
1 answer

Does the aspect ratio of the training images affect the object detection model created by Turi Create?

I'm training a custom object detection model with Turi Create using tc.object_detector.create and seeing different behavior running the mlmodel on an iPhone in landscape or portrait mode. Trying to determine if it is just a bug in the app, or does…
Avitzur
  • 161
  • 1
  • 8
1
2 3 4 5 6