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
1
vote
0 answers

GraphLab Create / Canopy - Runtime Exception. Unable to evaluate lambdas. -

I am using GraphLab Create + Enthought Canopy Express installed on Win 7 Pro (Canopy 64bit) C:\Users\kittuNnivvi>python Enthought Canopy Python 2.7.9 | 64-bit | (default, Jul 1 2015, 03:41:50) [MSC v .1500 64 bit (AMD64)] on win32 Type "help",…
abRao
  • 2,787
  • 1
  • 25
  • 37
1
vote
1 answer

Python - ImportError: No module named cy_ipc

I'm trying to get started with Python 2.7. I've the program installed as well as some packages , including graphlab, and I can do some basic operations , however, when i try to import packages to my code i got an error. My code is : import graphlab…
Nelson
  • 301
  • 3
  • 15
1
vote
1 answer

How to add 2 or more kinds of Vertices into SGraph in GraphLab Create?

I am using graphlab create in ubuntu. I try to add 2 kinds of vertices from 2 csv files using the following commands: import graphlab as gl v1 = gl.SFrame.read_csv('~/Documents/1.csv') v2= gl.SFrame.read_csv('~/Documents/2.csv') g =…
user3692521
  • 2,563
  • 5
  • 27
  • 33
1
vote
1 answer

How to export the result of pagerank as csv file to the disk in GraphLab Create?

Hello I was reaing this tutorial written by Shawn about getting started on GraphLab Create right here http://graphlab.com/learn/notebooks/getting_started_with_graphlab_create.html# which is really helpful. And I got a question that how to export…
user3692521
  • 2,563
  • 5
  • 27
  • 33
1
vote
1 answer

Graphlab Create SArray apply AttributeError: 'module' object has no attribute 'connect'

I'm having trouble applying a function to the values in an SArray object in Graphlab Create (python). The example given in the documentation even fails for me. sa = SArray([1,2,3,4,5]) sa[sa.apply(lambda x: math.log(x) <= 1)] returns the following:…
OregEmber
  • 45
  • 6
0
votes
0 answers

Python - Anaconda - ModuleNotFoundError: No module named 'graphlab'

I try to run the following command on a jupyter notebook: import graphlab and I get the following error: --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent…
adrCoder
  • 3,145
  • 4
  • 31
  • 56
0
votes
0 answers

graphlab error No module named 'dependencies'

I recently added graphlab to my anaconda environment and on my first import i get this error. ModuleNotFoundError Traceback (most recent call last) in ----> 1 import graphlab …
0
votes
0 answers

Failing to install graphlab

l am using this command : pip install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/my email address/Product key/GraphLab-Create-License.tar.gz which is provided at the Turi website. l have followed the instructions of…
LUNATIC
  • 21
  • 5
0
votes
0 answers

Linear regression with Scikit-Learn vs GraphLab Create. Same data, different results

I have created a multiple linear regression model on some data (housing prices for the Seattle county) with GraphLab Create and one with Scikit-Learn. Test and training set are chose at random but I've used the same split (80/20). However, the…
0
votes
1 answer

Getting License error while using graphlab.SFrame in iPython notebook even though I am using a valid license key

In a Machine Learning Course from Coursera by University of Washington, I am using graphlab library in iPython notebook. I am trying to execute the below code and getting an error as : "InvalidLicense: No JSON object could be decoded" If I run it…
Parth Karia
  • 265
  • 1
  • 4
  • 11
0
votes
1 answer

unable to install graphlab create on windows8

GraphLab Create Launcher Installation Error in Windows 8: There was an error creating the “gl-env” conda environment Also i tried the manual install. It was failing in step conda create -n gl-env python=2.7 anaconda=4.0.0
0
votes
0 answers

Graphlab and SFrame

I am taking a course on Machine Learning in which GraphLab and SFrame are being used for data manipulation and loading. When I try to load data using SFrame then I get this error: AttributeError Traceback (most recent…
Ramzan Shahid
  • 167
  • 1
  • 4
0
votes
2 answers

graphlab installation Dependencies missing in Anaconda

I'm trying to install GraphLab on my Windows 10, because I need it for an exams at University. The problem is that I can't install it with the Launcher.exe and now I'm trying to install it with the command line. I'm following this guide from their…
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

Installing GraphLab creates makes my Jupyter Notebook degrade from Python 3.6 to Python 2.7

I have Python 3.6 installed on my windows computer. I just installed GraphLab Create and now when I open up my Jupyter Notebooks, it shows Python 2 instead of Python 3 which it always was before. How do I go about changing it back to Python 3 in the…
bernando_vialli
  • 947
  • 4
  • 12
  • 27