Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tensorflow | 179,024 | 327 | 78 | a day ago | 46 | October 23, 2019 | 2,093 | apache-2.0 | C++ | |
An Open Source Machine Learning Framework for Everyone | ||||||||||
Transformers | 115,925 | 64 | 2,452 | a day ago | 125 | November 15, 2023 | 917 | apache-2.0 | Python | |
🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX. | ||||||||||
Pytorch | 72,936 | 3,341 | 8,140 | a day ago | 39 | November 15, 2023 | 13,295 | other | Python | |
Tensors and Dynamic neural networks in Python with strong GPU acceleration | ||||||||||
Cs Video Courses | 61,557 | 16 days ago | 2 | |||||||
List of Computer Science courses with video lectures. | ||||||||||
Keras | 59,798 | 679 | 2 days ago | 85 | November 07, 2023 | 123 | apache-2.0 | Python | ||
Deep Learning for humans | ||||||||||
D2l Zh | 51,074 | 1 | 1 | 6 days ago | 51 | August 18, 2023 | 59 | apache-2.0 | Python | |
《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被70多个国家的500多所大学用于教学。 | ||||||||||
Faceswap | 47,636 | 6 days ago | 19 | gpl-3.0 | Python | |||||
Deepfakes Software For All | ||||||||||
Deepfacelab | 43,455 | a month ago | 547 | gpl-3.0 | Python | |||||
DeepFaceLab is the leading software for creating deepfakes. | ||||||||||
Yolov5 | 43,398 | 5 days ago | 8 | September 21, 2021 | 199 | agpl-3.0 | Python | |||
YOLOv5 🚀 in PyTorch > ONNX > CoreML > TFLite | ||||||||||
Tensorflow Examples | 42,312 | a year ago | 218 | other | Jupyter Notebook | |||||
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2) |
Quick Links: Installation | Documentation
Turi Create simplifies the development of custom machine learning models. You don't have to be a machine learning expert to add recommendations, object detection, image classification, image similarity or activity classification to your app.
With Turi Create, you can accomplish many common ML tasks:
ML Task | Description |
---|---|
Recommender | Personalize choices for users |
Image Classification | Label images |
Drawing Classification | Recognize Pencil/Touch Drawings and Gestures |
Sound Classification | Classify sounds |
Object Detection | Recognize objects within images |
One Shot Object Detection | Recognize 2D objects within images using a single example |
Style Transfer | Stylize images |
Activity Classification | Detect an activity using sensors |
Image Similarity | Find similar images |
Classifiers | Predict a label |
Regression | Predict numeric values |
Clustering | Group similar datapoints together |
Text Classifier | Analyze sentiment of messages |
If you want your app to recognize specific objects in images, you can build your own model with just a few lines of code:
import turicreate as tc
# Load data
data = tc.SFrame('photoLabel.sframe')
# Create a model
model = tc.image_classifier.create(data, target='photoLabel')
# Make predictions
predictions = model.predict(data)
# Export to Core ML
model.export_coreml('MyClassifier.mlmodel')
It's easy to use the resulting model in an iOS application:
Turi Create supports:
Turi Create requires:
For detailed instructions for different varieties of Linux see LINUX_INSTALL.md. For common installation issues see INSTALL_ISSUES.md.
We recommend using virtualenv to use, install, or build Turi Create.
pip install virtualenv
The method for installing Turi Create follows the
standard python package installation steps.
To create and activate a Python virtual environment called venv
follow these steps:
# Create a Python virtual environment
cd ~
virtualenv venv
# Activate your virtual environment
source ~/venv/bin/activate
Alternatively, if you are using Anaconda, you may use its virtual environment:
conda create -n virtual_environment_name anaconda
conda activate virtual_environment_name
To install Turi Create
within your virtual environment:
(venv) pip install -U turicreate
The package User Guide and API Docs contain more details on how to use Turi Create.
Turi Create does not require a GPU, but certain models can be accelerated 9-13x by utilizing a GPU.
Linux | macOS 10.13+ | macOS 10.14+ discrete GPUs, macOS 10.15+ integrated GPUs |
---|---|---|
Activity Classification | Image Classification | Activity Classification |
Drawing Classification | Image Similarity | Object Detection |
Image Classification | Sound Classification | One Shot Object Detection |
Image Similarity | Style Transfer | |
Object Detection | ||
One Shot Object Detection | ||
Sound Classification | ||
Style Transfer |
macOS GPU support is automatic. For Linux GPU support, see LinuxGPU.md.
If you want to build Turi Create from source, see BUILD.md.
Prior to contributing, please review CONTRIBUTING.md and do not provide any contributions unless you agree with the terms and conditions set forth in CONTRIBUTING.md.
We want the Turi Create community to be as welcoming and inclusive as possible, and have adopted a Code of Conduct that we expect all community members, including contributors, to read and observe.