Home

Awesome

libtensorflow-pharo-bindings

This is a fork of https://github.com/Cuis-Smalltalk/Machine-Learning for Pharo. This library was also ported to VA Smalltalk : https://github.com/vasmalltalk/tensorflow-vast

You will need a 64 bits Pharo VM in order to run the code. The code has only be tested on Pharo 9.0 on macOS and Windows with TensorFlow 1.15.5: https://github.com/tensorflow/tensorflow/releases/tag/v1.15.5.

Installation

To install the project on your Pharo image you can execute the following script:

    Metacello new
    	githubUser: 'PolyMathOrg' project: 'libtensorflow-pharo-bindings' commitish: 'master' path: '';
    	baseline: 'LibTensorFlowPharoBinding';
    	load

Alternatively you can use Iceberg to load the code of this repository (See the video here: https://www.youtube.com/watch?v=U6Ttcc1KJUg&feature=youtu.be)

To add the project to your baseline just add this:

    spec
    	baseline: 'LibTensorFlowPharoBinding'
    	with: [ spec repository: 'github://PolyMathOrg/libtensorflow-pharo-bindings' ]

Installation of TensorFlow C API on MacOS

TensorFlowCAPI>>macModulename
  ^ '/usr/local/Cellar/libtensorflow/1.15.5/lib/libtensorflow.so'

Installation of TensorFlow C API on Windows

Installation of TensorFlow C API on Linux

TensorFlowCAPI>>unixModulename
  ^ '/usr/local/lib/libtensorflow.so'