Questions tagged [graphlab]

GraphLab Create is a Python library, backed by a C++ engine, for quickly building large-scale, high-performance data products.

GraphLab Create is a Python library, backed by a C++ engine, for quickly building large-scale, high-performance data products. GraphLab Create has been renamed to Turi Create, more recent versions of which are open source.

Some key features of GraphLab Create are:

  • Analyze terabyte scale data at interactive speeds, on your desktop.
  • A Single platform for tabular data, graphs, text, and images.
  • State of the art machine learning algorithms including deep learning, boosted trees, and factorization machines.
  • Run the same code on your laptop or in a distributed system, using a Hadoop Yarn or EC2 cluster.
  • Focus on tasks or machine learning with the flexible API.
  • Easily deploy data products in the cloud using Predictive Services.
  • Visualize data for exploration and production monitoring.
223 questions
3
votes
2 answers

Error updating GraphLab Create dependencies: AttributeError: 'module' object has no attribute 'get_dependencies'

Upon "import graphlab" the following occurs: ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found. 1. Ensure user account has write permission to…
billythepig
  • 59
  • 2
  • 5
3
votes
3 answers

Data transformation for machine learning

I have dataset with SKU IDs and their counts, i need to feed this data into a machine learning algorithm, in a way that SKU IDs become columns and COUNTs are at the intersection of transaction id and SKU ID. Can anyone suggest how to achieve this…
Arslán
  • 1,711
  • 2
  • 12
  • 15
3
votes
1 answer

Finding rows with "Not Applicable" value from a specific column from Graphlab SFrame

Given a Graphlab.SFrame object with the following column names: >>> import graphlab >>> sf = graphlab.SFrame.read_csv('some.csv') >>> s.column_names() ['Dataset', 'Domain', 'Score', 'Sent1', 'Sent2'] One could easily drop the rows with "not…
alvas
  • 115,346
  • 109
  • 446
  • 738
3
votes
1 answer

Python not executing write command

Python does not finish the following function (using iPython Notebook and Graphlab) def print_submission_file(var, filename='submission.txt'): with open(filename, 'w') as f: f.write('Id,Sales\n') for row in var: …
Maxime De Bruyn
  • 889
  • 7
  • 19
3
votes
5 answers

How to solve: ImportError: "No module named 'graphlab'?

With "source activate graphlab" in the terminal I can start up graphlab. I've created it like this: "conda create -n graphlab python=2.7 anaconda", because using virtualenv with Anaconda is untested and not recommended (according to the…
Fringo
  • 335
  • 1
  • 3
  • 17
3
votes
2 answers

Creating a virtualenv with Anaconda's Python version

An error when creating a virtualenv which uses a Python version different than the default Python of the machine, while Anaconda is installed on the machine. I created a new virtual environment: virtualenv --no-site-packages ~/graphlabcreate source…
Serendipity
  • 2,216
  • 23
  • 33
2
votes
0 answers

PySpark ClassNotFoundException: org.apache.spark.sql.DataFrame

I'm following examples on this page to test graphlab-create with PySpark Spark Integration I have tried following code from link: from pyspark import SparkContext from pyspark.sql import SQLContext # Launch spark by creating a spark context sc =…
ikel
  • 1,790
  • 6
  • 31
  • 61
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
2 answers

GraphLab create installation error: No matching distribution found for graphlab-create>=2.1

Unable to install Graphlab create from the link which I got in my mail. Facing the below issue. Can anybody please help on the below issue? (env) C:\Windows\system32>pip install --upgrade --no-cache-dir…
2
votes
2 answers

tornado/graphlab Cannot assign requested address in docker

Running gl.canvas.set_target('ipynb') throws following exeption in docker container. Even with gl.canvas.set_target('ipynb', port=28892) where 28892 is an open port, the error stays the…
Shubham Chaudhary
  • 47,722
  • 9
  • 78
  • 80
2
votes
3 answers

Is there a better approach to count SArray values?

I am looking for a better way to count the array values than what I have described below (Graphlab Create with Python) labels = graphlab.SArray([-1, -1, 1, 1, 1]) plus_ones_count = list(labels).count(1) # plus_ones_count outputs 3 minu_ones_count…
ImA ohW
  • 21
  • 4
2
votes
1 answer

GraphLab Create Installation Error - Python 3.5.2

I have been trying to install GraphLab Create on my system (64bit, Windows 10). I used the Installation guide as given on the site https://turi.com/download/install-graphlab-create-command-line.html I used the command line since I already had…
2
votes
0 answers

Image Similarity Detection : What alternative to Graphlab Create

I've been using the fabulous Graphlab Create API for few month now. Apple purchased Graphlab so I'm looking for an alternative capable of making a deep learning k-nearest neighbors model to find the most similar image to an input one. With it is…
Alkia
  • 21
  • 2
2
votes
2 answers

Graphlab and numpy issue

I'm currently doing a course on Coursera (Machine Leraning) offered by University of Washington and I'm facing little problem with the numpy and graphlab The course requests to use a version of graphlab higher than 1.7 Mine is higher as you can see…
2
votes
1 answer

run graphlab from Spyder

I can run my python file with imported functionalities from GraphLab from the Terminal (first use the source activate gl-env and then run the file). So the file and installations are alright in that sense. However, I can't figure out how to run the…
1 2
3
14 15