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
2
votes
4 answers

tensorflow error when installing turicreate?

When I install turicreate package, it gives me the following error: Collecting tensorflow>=2.0.0 (from turicreate) Could not find a version that satisfies the requirement tensorflow>=2.0.0 (from turicreate) (from versions: 0.12.1, 1.0.0, 1.0.1,…
2
votes
1 answer

What models do Core ML and Turi Create use?

I'm taking a course on Apple's machine learning technologies. I just came across this paragraph: Turi Create and Create ML are task-specific, rather than model-specific. This means that you specify the type of problem you want to solve, rather…
Martin Muldoon
  • 3,388
  • 4
  • 24
  • 55
2
votes
1 answer

Core ML giving same prediction every time

So I used turicreate to create a handwritten-digit recognition model using famous MNIST Dataset with enough amount of data to train the model... But When I'm deploying the model in ios project, it always predicts same output (i.e. 1) with…
Hadia
  • 31
  • 5
2
votes
2 answers

Unsure how to train a ML model to recognise static imagery

I'm trying to build a ML model for a specific use case. I've read up on various different libraries, and attempted to train my own classifiers, but I feel like what I'm doing isn't quite right - the setups for object detection all seem based on the…
Andrew
  • 7,693
  • 11
  • 43
  • 81
1
vote
0 answers

How to install Turicreate in Google Colaboratory?

I know Google Colaboratory python version is 3.9.16, and Turicreate only works for 2.7, 3.5, 3.6, 3.7 and 3.8. So how can I use turicrate in google colab? I've tried: !pip install virtualenv !virtualenv -p python3.7 env !source env/bin/activate !pip…
1
vote
0 answers

Could not find a version that satisfies the requirement tensorflow<2.1.0,>=2.0.0 (from turicreate)

Collecting tensorflow<2.1.0,>=2.0.0 (from turicreate) I am facing an error while installing turicreate. ERROR: Could not find a version that satisfies the requirement tensorflow<2.1.0,>=2.0.0 (from turicreate) (from versions: 0.12.0rc0, 0.12.0rc1,…
1
vote
1 answer

Unable to use Turi Create in Jupyter notebook

I installed Jupyter notebook and TuriCreate and then i imported Turicreate in jupyter notebook. after that to use turicreate i wrote : sf = turicreate.SFrame('people-example.csv')` (people-example.csv is a file i wanted to use) but it showed this…
purple_tulip
  • 37
  • 1
  • 7
1
vote
0 answers

Unable to export Core ML model in Turicreate

I used AWS Sagemaker with Jupyter notebook to train my Turicreate model. It trained successfully but I'm unable to export it to a CoreML model. It shows the below error. I've tried various kernels in the Jupyter notebook with the same result. Any…
1
vote
1 answer

Selecting Multiple .mlModel in swift

i have multiple .mlModels in my xcode project and i want user to select the model and perform prediction let gestureClassifier = GestureClassifier() //mlModel func predictGesture(window: Int) { let previousOutput = modelOutputs[window] …
Muhammad Ahmed
  • 131
  • 1
  • 1
  • 7
1
vote
1 answer

How do I install turicreate with anadonda on windows 10

I am trying to install Turicreate on windows 10 with anaconda and python 3.7and pip version 19.3 Command: **conda create -n virtual_environment_name anaconda conda activate virtual_environment_name pip install -U turicreate**…
megha
  • 301
  • 5
  • 18
1
vote
1 answer

Importing Turicreate gives me error No module named 'turicreate.cython.cy_unity'

While importing turicreate i get below error in jupyter notebook: No module named 'turicreate.cython.cy_unity' I have tried uninstalling and re-installing the package. Not sure what i am doing wrong here. I am using windows 10 64 bit machine and…
1
vote
1 answer

Jupyter notebook : kernel died msg when loading big CSV file

I am using a Jupiter Notebook for making a machine learning model using turicreate. When ever I upload a big .csv file, I get a message: kernel died. Since I am new in python is there an other way to Batch loading file or anyone nows how to fix this…
1
vote
0 answers

Turicreate Feature Extraction

Is it possible to extract features of two images and then combine them and build another classifier on top? So that i can rate the two images. Furthermore i want to generate a .mlmodel. Thanks for your help
J.Swifter
  • 21
  • 2
1
vote
0 answers

Why is not "evaluate() method of Recommender" be completed in Turi Create?

I'm trying to test a Turi Create Project. My jupyter notebook browser screen and Python code is as below. In [1]: import turicreate as tc In [2]: data = tc.SFrame("data.csv") In [3]: train, test = data.random_split(0.8) In [4]: train =…
1
vote
0 answers

Is there a way to prevent python turicreate from using subdirectories as training data?

I'm getting my training data using... turicreate.image_analysis.load_images('TrainingData', with_path=True) TrainingData/ has all my training data using the folder names as labels... data['label'] = data['path'].apply(lambda path:…
jscul
  • 748
  • 1
  • 10
  • 25