ctuning / ck-pytorch

Integration of PyTorch to Collective Knowledge workflow framework to provide unified CK JSON API for AI (customized builds across diverse libraries and hardware, unified AI API, collaborative experiments, performance optimization and model/data set tuning):

Home Page:http://cKnowledge.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Collective Knowledge repository for PyTorch

All CK components can be found at cKnowledge.io and in one GitHub repository!

This project is hosted by the cTuning foundation.

compatibility automation workflow

License

Introduction

This repository provides portable, customizable, and reproducible workflows, automation actions, and reusable artifacts for PyTorch in the Collective Knowledge format (CK).

Minimal CK installation

The minimal installation requires:

  • Python 2.7 or 3.3+ (limitation is mainly due to unitests)
  • Git command line client.

Linux/MacOS

You can install CK in your local user space as follows:

$ git clone http://github.com/ctuning/ck
$ export PATH=$PWD/ck/bin:$PATH
$ export PYTHONPATH=$PWD/ck:$PYTHONPATH

You can also install CK via PIP with sudo to avoid setting up environment variables yourself:

$ sudo pip install ck

Windows

We still need to provide proper support to build PyTorch via CK on Windows

First you need to download and install a few dependencies from the following sites:

You can then install CK as follows:

 $ pip install ck

or

 $ git clone https://github.com/ctuning/ck.git ck-master
 $ set PATH={CURRENT PATH}\ck-master\bin;%PATH%
 $ set PYTHONPATH={CURRENT PATH}\ck-master;%PYTHONPATH%

CK workflow installation for PyTorch

CPU

$ ck pull repo:ck-pytorch
$ ck install package --tags=lib,pytorch,vcpu

GPU

$ ck pull repo:ck-pytorch
$ ck install package --tags=lib,pytorch,vcuda

Checking classification example (and automatically installing available MXNet model(s) via CK)

$ ck install package --tags=lib,pytorch-vision
$ ck run program:pytorch
  • Select 'classify-squeezenet-1.1'
  • Select image to classify
  • Observe result

Next steps

We plan to add PyTorch to our ReQuEST tournament framework: http://cKnowledge.org/request

Feedback

Get in touch with CK-AI community here.

About

Integration of PyTorch to Collective Knowledge workflow framework to provide unified CK JSON API for AI (customized builds across diverse libraries and hardware, unified AI API, collaborative experiments, performance optimization and model/data set tuning):

http://cKnowledge.org

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 65.8%Language:Shell 22.5%Language:Batchfile 11.7%