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

GraphLab installation when Python 2.7 is no longer supported

i need to install GraphLab in jupyter notebook to do a coursera project but all instructions that i found and my research in stackoverflow shows that it require python-2.x or now python-2.7 is no longer supported so what can i do ?
eya_bklt
  • 305
  • 3
  • 10
1
vote
0 answers

Module object has no attribute SFrame when running .exe

I have graphlab installed using Anaconda and a gl-env and I built a program with it that works without errors. I'm using python 2.7.15, pip 9.0.1 and Windows 7. I've used pyinstaller to convert the file to an .exe but when running the .exe I get an…
T.Gilmour
  • 43
  • 2
  • 12
1
vote
1 answer

Priting output in tkinter instead of console

I'm using graphlab to print out recommendations and have my tkinter GUI which currently prints out the recommendation results in the console and I'm lost on how to get it to print in the GUI. Class "UserID" is where i have a button that calls the…
1
vote
1 answer

Turi Create Error : 'module' object not callable

I am trying to implement nearest neighbor classifier in Turi Create, however I am unsure of this error I am getting. This error occurs when I create the actual model. I am using python 3.6 if that helps. Error: Traceback (most recent call last): …
user
  • 854
  • 2
  • 12
  • 28
1
vote
2 answers

GraphLab Create sFrame.show() function error when executing

I've installed GraphLab Create using Anaconda. Everything seems to be fine with SFrames, I can manipulate data and ingest it but I can't execute the function show(). The error message is like this: Error: Requested port is unavailable inspect.pyc in…
Jessie
  • 363
  • 2
  • 6
  • 20
1
vote
0 answers

TypeError: 'SArray' object does not support item assignment?

I am working on graphlab and geeting problems in all kind of assignments using SFrame, which are like dataframe and series objects are SArrays. Each time I have to convert the whole data to dataframe and again to SFrame. import graphlab as gl sf =…
D-hash-pirit
  • 407
  • 2
  • 5
  • 12
1
vote
2 answers

UnsatisfiableError: The following specifications were found to be in conflict: conda 4.0.8* -> conda-env <2.5 -> python 2.7* - python 3.6*

I am new to Python. I am trying to use Graphlab create launcher to import Graphlab libraries in my python notebook. I already have Anaconda installed on my MacBook Pro(OSX). When I start to run Graphlab create launcher, I get following…
Jay
  • 71
  • 1
  • 1
  • 9
1
vote
1 answer

How to delete a column in graphlab?

I'm not getting to delete a column using graphlab I have tried using data.drop('X1','Unnamed:0',axis =1)
nbm
  • 69
  • 7
1
vote
1 answer

graphlab - sframe : How to remove rows which have same ids and condition on a column?

I have a graphlab sframe dataframe where few rows have similar id value in "uid" column. | VIM Document Type | Vendor Number & Zone | Value <5000 or >5000 | Today Status…
Dreams
  • 5,854
  • 9
  • 48
  • 71
1
vote
0 answers

matplotlib not working in import

AttributeError: 'module' object has no attribute 'cbook' does not answer my question. import matplotlib.pyplot as plt is not working. Error is attached in the image. When, I run pip install matplotlib - it shows as already installed. Please see…
prabodhprakash
  • 3,825
  • 24
  • 48
1
vote
2 answers

What is use of SFrame.materialize() in Graphlab?

When I was trying to get the rows of my dataset belonging to column of userid =1 through graphlab's sframe datastructure, sf[sf['userid'] == 1], I got the rows,however I also got this message, [? rows x 6 columns] Note: Only the head of the SFrame…
hgr
  • 178
  • 1
  • 1
  • 10
1
vote
1 answer

Install GraphLab Package in python 3.6.1

I tried to install GraphLab, but the result became like this: AttributeError: module 'graphlab' has no attribute 'connect' My python version is 3.6.1. And I also tried the code: python -m pip install connect But it didn't work. Does anyone know how…
Mandy
  • 21
  • 1
  • 3
1
vote
1 answer

Change x and y input range in Hexbin plot in Python

I created a hexbin plot using the following code in Python: df.plot(kind='hexbin', x='NO2', y='pre', gridsize=40, sharex = False) and I get this figure, I want to change the ranges of input x and y from default to [0,100]. I used the following…
Amir H
  • 115
  • 12
1
vote
1 answer

TypeError: A common type cannot be infered from types float, string in python

I'm able to get the data from here in DataFrame. When I'm converting the DataFrame into SFrame using graphlab then this error is showing: TypeError: A common type cannot be infered from types float, string. My Code is import graphlab import…
1
vote
1 answer

Error while trying to install packages from conda using graphlab create launcher

I keep getting the following error while trying to install https://turi.com/download/install-graphlab-create.html here was a problem updating the conda package. Restart GraphLab Create Launcher. Unable to update conda: Using Anaconda Cloud api…
user2056487