You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

The PowerAI is an enterprise software distribution that combines popular open source deep learning frameworks, efficient AI development tools, and accelerated IBM® Power Systems™ servers. The PowerAI-1.6.0 includes

FrameworkVersionDescription
Caffe1.0Caffe is a deep learning framework made with expression, speed, and modularity in mind. It is developed by Berkeley AI Research and by community contributors.
TensorFlow1.13.1TensorFlow is an end-to-end open source platform for machine learning. It is developed by Google and by community contributors.
Pytorch1.0.1Pytorch is an open source deep learning platform that provides a seamless path from research prototyping to production deployment. It is developed by Facebook and by community contributors.

Load PowerAI Module

The HAL machine has PowerAI-1.6.0 installed for both Python2 and Python3(default) environment. Users can load the PowerAI module by input

module load ibm/powerai/1.6.0.py2 # for python2 environment
module load ibm/powerai/1.6.0.py3 # for python3 environment
module load ibm/powerai           # python3 environment by default

Simple Example for Caffe

Initial an interactive job

srun --partition=debug --pty --nodes=1 --ntasks-per-node=8 --gres=gpu:v100:1 -t 01:30:00 --wait=0 --export=ALL /bin/bash

Install samples for Caffe

caffe-install-samples ~/caffe-samples
cd caffe-samples

Download data for MNIST model

./data/mnist/get_mnist.sh

Convert data and create MNIST model

./examples/mnist/create_mnist.sh

Training LeNet on MNIST

./examples/mnist/train_lenet.sh

Simple Example for TensorFlow

Simple Example for Pytorch

  • No labels