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
0
votes
1 answer

DSx - graphlab module

I want to use graphlab in a DSx notebook. I have installed the module with: !pip install --user --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/my_license/GraphLab-Create-License.tar.gz But running import graphlab fails with…
0
votes
1 answer

Package missing in current win-64 channels when creating conda everonment for installation GrahpLab create

For a coursera course I have to install GraphLab Create. I installed Anaconda 2.0 and Python 2.7. Then I run the following command to create the conda environment from the anaconda 2 command prompt: conda create -n gl-env python=2.7…
0
votes
1 answer

Graphlab get_dependencies() SSL certificate verify failed

I am having some problems to get graphlab to work. Every time I want to import graphlab I get the message: ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found. 1. Ensure user account has write permission to…
Lolo
  • 1
  • 1
0
votes
0 answers

Downloading graphlab is causing this error

This is the problem which I am getting after using graphlab.get_dependencies. Downloading xz. Extracting xz. Downloading gcc-libs. --------------------------------------------------------------------------- IOError …
0
votes
2 answers

Can't install Graphlab create on azure notebook

So I'm testing https://notebooks.azure.com , and i wanted to install graphlab using pip, but i get the following error : Collecting…
Walid
  • 13
  • 1
  • 6
0
votes
1 answer

Graphlab Sframe, retrieve multiple rows

I am trying to access multiple rows from a graphlab SFrame and convert them into a numpy array. I have a database fd of 96000 rows and 4096 columns and need to retrieve the row numbers that are stored in a numpy array. The method that I have come…
Nikolai K.
  • 77
  • 9
0
votes
1 answer

On run, Jupyter notebooks prints nothing around 90% of the time

My code -- which opens a csv file containing a list of links each containing a resume, prints the text in the resumes, the basic sentiment and the corresponding link -- only works sometimes. Originally I thought the code didn't work but in fact it…
Ty Batten
  • 31
  • 1
  • 5
0
votes
1 answer

Graphlab - How to set the number of trees parameter in random forest classifier

I am training a random forest classifier : model = gl.random_forest_classifier.create(train, target = 'label',row_subsample = 0.5, column_subsample = 0.75, validation_set=validation, metric="auc", max_iterations=10, max_depth = 15) How can I set…
Dreams
  • 5,854
  • 9
  • 48
  • 71
0
votes
1 answer

Missing data in SFrame

I'm trying to use graphlab.linear_regression.create and I get an error that I have missing data in the column I am using to predict my model and it says to use dropna to fix the problem. I use dropna but it doesn't get rid of any of the rows…
0
votes
2 answers

unable to install graphlab after typing graphlab.get_dependencies() function

The code shows following errors: ACTION REQUIRED: Dependencies libstdc++-6.dll and libgcc_s_seh-1.dll not found. Ensure user account has write permission to C:\Users\dungeon_master\Anaconda3\envs\gl-env\lib\site-packages\graphlab Run…
0
votes
2 answers

Transforming grouped data by converting grouping-categories into fields (using GraphLab or Panda's DataFrame)

I have the following records grouped by the user_id and action columns. user_id | action | count 1 | read | 15 1 | write | 5 1 | delete | 7 2 | write | 2 3 | read | 9 3 | write | 1 3 | delete | 2 I…
renakre
  • 8,001
  • 5
  • 46
  • 99
0
votes
0 answers

why cleaning text function doens't work without decoding to UTF8?

I wrote the following function in python 2.7 to clean the text but it doesn't work without decoding the tweet variable to utf8 # -*- coding: utf-8 -*- import re def clean_tweet(tweet): tweet = re.sub(u"[^\u0622-\u064A]", ' ', tweet,…
0
votes
1 answer

SFrame Column of type: Dictionary

when I run: my_sframe['col_1'] = '' I get a blank column, which is what I wanted. However when I run: my_sframe['col_1'] = {} I get an error that says unexpected data type. The SFrame API doesn't address this, as seen…
Arash Howaida
  • 2,575
  • 2
  • 19
  • 50
0
votes
1 answer

Python 2.7 - GraphLab : ZeroDivisionError: float division by zero

I'm trying to create a K-means model using normalised tf-idf as the feature. I'm getting 'ZeroDivisionError: float division by zero'. Below is the code. Please let me know if more details are required. import graphlab as gl data =…
Praveen
  • 113
  • 1
  • 13
0
votes
2 answers

PyCharm5 Community Edition - ImportError: "No module named 'graphlab'?

I installed the GraphLab by following the instructions here: https://turi.com/download/install-graphlab-create-command-line.html But when i try to import graphlab in pycharm im getting this error: No module named 'graphlab'. I tried to find the…
redwolf_cr7
  • 1,845
  • 4
  • 26
  • 30