Hprc banner tamu.png

Difference between revisions of "SW:Machine Learning"

From TAMU HPRC
Jump to: navigation, search
(Software)
(Choosing Which Machine Learning Software to Use)
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
=Software for Machine Learning=
 
=Software for Machine Learning=
 +
 
__TOC__
 
__TOC__
==Description==
 
This page lists software for Machine Learning.
 
  
==Software==
+
==Choosing Which Machine Learning Software to Use==
*[[SW:Faster-RCNN Faster-RCNN using Tensorflow]]
+
With the variety of machine learning tools available on the clusters, it is important to choose the one which is best suited to the needs of your project. Most of these tools are libraries built on top of Python, so familiarity with Python could influence your decision on which to use. Some packages are better suited for GPU use. Below is a list of machine learning tools available on the clusters along with information about them. 
*[[SW:Keras Keras]]
+
 
*[[SW:PyTorch PyTorch]]
+
*[[SW:Keras | Keras]] - Keras is a minimalist, highly modular neural networks library, written in Python and capable of running on top of either TensorFlow or Theano.
*[[SW:Tensorflow | TensorFlow]]
+
*[[SW:PyTorch | PyTorch]] - Tensors and Dynamic neural networks in Python with strong GPU acceleration.
 +
*[[SW:Scikit_Learn | Scikit-Learn]] - An open-source python library for data mining and data analysis. Built on NumPy, SciPy, and matplotlib.
 +
*[[SW:TensorFlow | TensorFlow]] - An open-source python library for Machine Intelligence
 +
*[[SW:Caffe | Caffe]] - A modular deep learning framework
 +
*[[SW:Faster-RCNN | Faster-RCNN using Tensorflow]] - Faster R-CNN is an object detection framework based on deep convolutional networks, which includes a Region Proposal Network (RPN) and an Object Detection Network. Both networks are trained for sharing convolutional layers for fast testing.
 +
 
 +
==Python==
 +
The [[SW:Python | Python]] is a useful page for learning how to load Python and set up a virtual environment, which may be necessary when installing additional packages/libraries. Note that not every version of Python will be compatible with your chosen machine learning tool. It is important to be aware of the limitations of the package which you are using.
 +
 
 +
==Anaconda==
 +
[[SW:Anaconda | Anaconda]] is a distribution of Python aimed at simplifying package management. Anaconda can also create virtual environments, and may provide a better approach for usage of machine learning tools.

Latest revision as of 16:37, 20 December 2018

Software for Machine Learning

Choosing Which Machine Learning Software to Use

With the variety of machine learning tools available on the clusters, it is important to choose the one which is best suited to the needs of your project. Most of these tools are libraries built on top of Python, so familiarity with Python could influence your decision on which to use. Some packages are better suited for GPU use. Below is a list of machine learning tools available on the clusters along with information about them.

  • Keras - Keras is a minimalist, highly modular neural networks library, written in Python and capable of running on top of either TensorFlow or Theano.
  • PyTorch - Tensors and Dynamic neural networks in Python with strong GPU acceleration.
  • Scikit-Learn - An open-source python library for data mining and data analysis. Built on NumPy, SciPy, and matplotlib.
  • TensorFlow - An open-source python library for Machine Intelligence
  • Caffe - A modular deep learning framework
  • Faster-RCNN using Tensorflow - Faster R-CNN is an object detection framework based on deep convolutional networks, which includes a Region Proposal Network (RPN) and an Object Detection Network. Both networks are trained for sharing convolutional layers for fast testing.

Python

The Python is a useful page for learning how to load Python and set up a virtual environment, which may be necessary when installing additional packages/libraries. Note that not every version of Python will be compatible with your chosen machine learning tool. It is important to be aware of the limitations of the package which you are using.

Anaconda

Anaconda is a distribution of Python aimed at simplifying package management. Anaconda can also create virtual environments, and may provide a better approach for usage of machine learning tools.