Difference between revisions of "SW:Machine Learning"
(→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__ | ||
− | |||
− | |||
− | ==Software== | + | ==Choosing Which Machine Learning Software to Use== |
− | *[[SW: | + | 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: | + | |
− | *[[SW: | + | *[[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 | | + | *[[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
Contents
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.