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

How to extract rows in sframe where there's a joint condition and two separate conditions?

I have an sframe as such: +---------+------+-------------------------------+-----------+------------------+ | term_id | lang | term_str | term_type | reliability_code…
alvas
  • 115,346
  • 109
  • 446
  • 738
5
votes
2 answers

Convert graphlab sframe into a dictionary of {key: values}

Given an SFrame as such: +------+-----------+-----------+-----------+-----------+-----------+-----------+ | X1 | X2 | X3 | X4 | X5 | X6 | X7 …
alvas
  • 115,346
  • 109
  • 446
  • 738
5
votes
2 answers

Splitting a Graphlab SFrame Date column into three columns (Year Month Day)

Given a graphlab SFrame where there's a column with dates, e.g.: +-------+------------+---------+-----------+ | Store | Date | Sales | Customers | +-------+------------+---------+-----------+ | 1 | 2015-07-31 | 5263.0 | 555.0 | | …
alvas
  • 115,346
  • 109
  • 446
  • 738
4
votes
4 answers

CondaVerificationError: || ClobberError: Create a new conda environment with Python 2.7.x or 3.7.x

While Creating a new conda environment with Python 2.7.x or 3.7.x using conda create -n gl-env python=2.7 anaconda=4.0.0 I get the following errors Preparing transaction: done Verifying transaction: failed CondaVerificationError: The package for…
Kokul Jose
  • 1,384
  • 2
  • 14
  • 26
4
votes
2 answers

Conda: Dependencies missing in current osx-64 channels

(*) ISSUE: I am trying to install GraphLab Create on MacOS for my coursera class. The installer fails when trying to create a new conda environment. (*) ATTEMPTED SOLUTIONS: (1) Installed packages listed on the error message for the current version…
Frank2000
  • 41
  • 4
4
votes
0 answers

GraphLab Installation : Certificate has expired

I have registered myself on the GraphLab platform yesterday only. I got the license key and now using it to install GraphLab through Launcher application but as soon as I click on the install button, it started throwing below error. I am using…
Praveenks
  • 1,436
  • 9
  • 40
  • 79
4
votes
1 answer

Group by in SFrame without installing graphlab

How to use groupby operation in SFrame, without installing graphlab. I would love to do some aggregation, but in all examples in the internet I have seen aggregation function comes from Graphlab. Like: import graphlab.aggregate as…
Vladimir
  • 369
  • 1
  • 3
  • 12
4
votes
0 answers

Spyder-Python crashes when importing graphlab

this is my first question here. I've read the article on how to make a good question and I hope to stay within those guidelines. Whenever I run import graphlab, Spyder2 freezes and then crashes. I tried installing the package many times and all of…
Luciano Viola
  • 61
  • 1
  • 5
4
votes
1 answer

Seed options: Using different packages for machine learning in Python

I was wondering if the following codes would give the same results. More specifically if random_state=0 is the same with seed = 0: -Using sklearn: from sklearn.cross_validation import train_test_split x = data['x'] y =…
Mpizos Dimitris
  • 4,819
  • 12
  • 58
  • 100
4
votes
2 answers

pandas count over multiple columns

I have a dataframe looking like this Measure1 Measure2 Measure3 ... 0 1 3 1 3 2 3 0 I'd like to count the occurrences of the values over the columns to produce: Measure Count Percentage 0 2 …
dsent
  • 305
  • 1
  • 3
  • 9
3
votes
1 answer

Installing Graphlab create on Anaconda on Windows 10 (Python, Machine Learning)

I'm following this tutorial on youtube to install graphlab creat, but when I try to go to https://turi.com/download/install-graphlab-create-command-line.html and create an account on graphlab create and get a license to complete the installation I…
3
votes
0 answers

Linker not linking even after specifying the path

I am trying to compile sssp in PowerGraph toolkit which is available here: https://github.com/jegonzal/PowerGraph. As suggested, I ran: $ ./configure --no_tcmalloc $ cd release/toolkits/graph_analytics $ make sssp The configure step succeeded, and…
Margot
  • 31
  • 2
3
votes
1 answer

Missing dependencies while creating Anaconda environment

I tried to install GraphLab Create, so I created a new Anaconda environment, but it shows missing dependencies. I have no idea on how to remove it. Terminal: C:\Users\PC>conda create -n gl-env python=2.7 anaconda=4.0.0 The following error is…
Nisha
  • 397
  • 1
  • 5
  • 16
3
votes
2 answers

graphlab.SFrame.show() Error: Requested port is unavailable: None

upon entering the command: graphlab.show(); I get the following error: Error: Requested port is unavailable: None So, I tried to set the port by typing: gl.canvas.set_target('ipynb', 8888). But not fruitful. I checked the open ports in…
Bakhtawar
  • 107
  • 2
  • 14
3
votes
3 answers

GraphLab-Create Module not being installed on Python 3.5 (ubuntu)

I used this command: pip install --upgrade --no-cache-dir https://get.graphlab.com/GraphLab-Create/2.1/email_address/token/GraphLab-Create-License.tar.gz But got this error: Could not find a version that satisfies the requirement…
Ayes
  • 61
  • 1
  • 3
1
2
3
14 15