Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Keras | 58,529 | 330 | a day ago | 68 | May 13, 2022 | 389 | apache-2.0 | Python | ||
Deep Learning for humans | ||||||||||
Data Science Ipython Notebooks | 25,025 | a month ago | 33 | 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 | 23,101 | 4 | 63 | 2 days ago | 489 | July 04, 2022 | 28 | mit | JavaScript | |
Visualizer for neural network, deep learning, and machine learning models | ||||||||||
Mask_rcnn | 23,049 | 24 days ago | 5 | March 05, 2019 | 1,947 | other | Python | |||
Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow | ||||||||||
100 Days Of Ml Code | 19,753 | a year ago | 9 | mit | Jupyter Notebook | |||||
100-Days-Of-ML-Code中文版 | ||||||||||
D2l En | 18,049 | 2 days ago | 101 | other | Python | |||||
Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 400 universities from 60 countries including Stanford, MIT, Harvard, and Cambridge. | ||||||||||
Ncnn | 17,282 | a day ago | 19 | July 01, 2022 | 987 | other | C++ | |||
ncnn is a high-performance neural network inference framework optimized for the mobile platform | ||||||||||
Onnx | 14,867 | 148 | 245 | a day ago | 26 | June 18, 2022 | 387 | apache-2.0 | Python | |
Open standard for machine learning interoperability | ||||||||||
Best Of Ml Python | 13,727 | 6 days ago | 19 | cc-by-sa-4.0 | ||||||
🏆 A ranked list of awesome machine learning Python libraries. Updated weekly. | ||||||||||
Horovod | 13,336 | 20 | 10 | a day ago | 72 | June 21, 2022 | 347 | other | Python | |
Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet. |
This project contains examples which demonstrate how to deploy analytic models to mission-critical, scalable production leveraging Apache Kafka and its Streams API. Examples will include analytic models built with TensorFlow, Keras, H2O, Python, DeepLearning4J and other technologies.
Here is some material about this topic if you want to read and listen to the theory instead of just doing hands-on:
More sophisticated use cases around Kafka Streams and other technologies will be added over time in this or related Github project. Some ideas:
The most exciting and powerful example first: Streaming Machine Learning at Scale from 100000 IoT Devices with HiveMQ, Apache Kafka and TensorFLow
Here some more demos:
The code is developed and tested on Mac and Linux operating systems. As Kafka does not support and work well on Windows, this is not tested at all.
Java 8 and Maven 3 are required. Maven will download all required dependencies.
Just download the project and run
mvn clean package
You can do this in main directory or each module separately.
Apache Kafka 2.5 is currently used. The code is also compatible with Kafka and Kafka Streams 1.1 and 2.x.
Please make sure to run the Maven build without any changes first. If it works without errors, you can change library versions, Java version, etc. and see if it still works or if you need to adjust code.
Every examples includes an implementation and an unit test. The examples are very simple and lightweight. No further configuration is needed to build and run it. Though, for this reason, the generated models are also included (and increase the download size of the project).
The unit tests use some Kafka helper classes like EmbeddedSingleNodeKafkaCluster in package com.github.megachucky.kafka.streams.machinelearning.test.utils so that you can run it without any other configuration or Kafka setup. If you want to run an implementation of a main class in package com.github.megachucky.kafka.streams.machinelearning, you need to start a Kafka cluster (with at least one Zookeeper and one Kafka broker running) and also create the required topics. So check out the unit tests first.
Detailed info in h2o-gbm
Detailed info in tensorflow-image-recognition
Detailed info in dl4j-deeplearning-iris
Detailed info in tensorflow-kerasm