Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tensorflow | 172,389 | 327 | 77 | 5 hours ago | 46 | October 23, 2019 | 2,295 | apache-2.0 | C++ | |
An Open Source Machine Learning Framework for Everyone | ||||||||||
Transformers | 87,323 | 64 | 911 | 5 hours ago | 91 | June 21, 2022 | 604 | apache-2.0 | Python | |
🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX. | ||||||||||
Keras | 57,697 | 330 | 9 hours ago | 68 | May 13, 2022 | 370 | apache-2.0 | Python | ||
Deep Learning for humans | ||||||||||
Tensorflow Examples | 42,312 | 5 months ago | 218 | other | Jupyter Notebook | |||||
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2) | ||||||||||
Real Time Voice Cloning | 40,272 | 2 days ago | 104 | other | Python | |||||
Clone a voice in 5 seconds to generate arbitrary speech in real-time | ||||||||||
Handson Ml | 24,969 | 2 months ago | 136 | apache-2.0 | Jupyter Notebook | |||||
⛔️ DEPRECATED – See https://github.com/ageron/handson-ml3 instead. | ||||||||||
Ray | 24,711 | 80 | 199 | 5 hours ago | 76 | June 09, 2022 | 2,902 | apache-2.0 | Python | |
Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a toolkit of libraries (Ray AIR) for accelerating ML workloads. | ||||||||||
Data Science Ipython Notebooks | 23,924 | 5 months ago | 26 | other | Python | |||||
Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines. | ||||||||||
Netron | 21,717 | 4 | 63 | 12 hours ago | 489 | July 04, 2022 | 22 | mit | JavaScript | |
Visualizer for neural network, deep learning, and machine learning models | ||||||||||
Spleeter | 21,695 | 5 | a month ago | 36 | June 10, 2022 | 189 | mit | Python | ||
Deezer source separation library including pretrained models. |
Simple framework to construct machine learning models with tensorflow
SuperTF was initially conceived as a means to get familiar with Tensorflow by constructing machine learning models and executing the Tensorflow Tutorials
I have expanded SuperTF overtime and now it has a suite of tools to help in:
Please refer to the examples for:
I’ve added a several neural network architectures:
I've edited and added to certain network architectures to fulfill a certain niche or to improve their performance. These networks are:
Unet1024 - U-Net: Convolutional Networks for Biomedical Image Segmentation
Unet1024 is a simple extension of the orginal Unet architecture, the network accepts an image of size 1024 x 1024 and has 7 encoder-decoder pairs.
Full-Resolution Residual Network-C - Full-Resolution Residual Networks for Semantic Segmentation in Street Scenes
FRRN-C is build upon FRRN-A. Here the center Full-Resolution residual block is replaced by densely conected block of dialated convolutions. Moreover the Full-Resolution Residual Network is enclosed in an encoder decoder pair which doubles the input and output resolution.
Attn-Lstm Attn_Lstm is a multilayer Long short term memory network with BahdanauAttention. Initial state is set via feature vectors extracted from inception-resent-v2a. Used for image to text generation.