Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tensorflow | 177,889 | 327 | 77 | 3 hours ago | 46 | October 23, 2019 | 2,045 | apache-2.0 | C++ | |
An Open Source Machine Learning Framework for Everyone | ||||||||||
Transformers | 112,668 | 64 | 1,869 | 2 hours ago | 114 | July 18, 2023 | 865 | apache-2.0 | Python | |
🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX. | ||||||||||
Pytorch | 71,230 | 3,341 | 6,728 | 3 hours ago | 37 | May 08, 2023 | 12,813 | other | Python | |
Tensors and Dynamic neural networks in Python with strong GPU acceleration | ||||||||||
Cs Video Courses | 60,439 | 20 hours ago | 2 | |||||||
List of Computer Science courses with video lectures. | ||||||||||
Keras | 59,447 | 578 | 3 hours ago | 80 | June 27, 2023 | 100 | apache-2.0 | Python | ||
Deep Learning for humans | ||||||||||
D2l Zh | 48,273 | 1 | 1 | 15 days ago | 47 | December 15, 2022 | 48 | apache-2.0 | Python | |
《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被70多个国家的500多所大学用于教学。 | ||||||||||
Faceswap | 47,163 | 2 days ago | 23 | gpl-3.0 | Python | |||||
Deepfakes Software For All | ||||||||||
Tensorflow Examples | 42,312 | a year ago | 218 | other | Jupyter Notebook | |||||
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2) | ||||||||||
Deepfacelab | 42,238 | a month ago | 536 | gpl-3.0 | Python | |||||
DeepFaceLab is the leading software for creating deepfakes. | ||||||||||
Yolov5 | 41,939 | a day ago | 8 | September 21, 2021 | 223 | agpl-3.0 | Python | |||
YOLOv5 🚀 in PyTorch > ONNX > CoreML > TFLite |
Dlib is a modern C++ toolkit containing machine learning algorithms and tools for creating complex software in C++ to solve real world problems. See http://dlib.net for the main project documentation and API reference.
Go into the examples folder and type:
mkdir build; cd build; cmake .. ; cmake --build .
That will build all the examples. If you have a CPU that supports AVX instructions then turn them on like this:
mkdir build; cd build; cmake .. -DUSE_AVX_INSTRUCTIONS=1; cmake --build .
Doing so will make some things run faster.
Finally, Visual Studio users should usually do everything in 64bit mode. By default Visual Studio is 32bit, both in its outputs and its own execution, so you have to explicitly tell it to use 64bits. Since it's not the 1990s anymore you probably want to use 64bits. Do that with a cmake invocation like this:
cmake .. -G "Visual Studio 14 2015 Win64" -T host=x64
The examples folder has a CMake tutorial that tells you what to do. There are also additional instructions on the dlib web site.
Alternatively, if you are using the vcpkg dependency manager you can download and install dlib with CMake integration in a single command:
vcpkg install dlib
Before you can run the Python example programs you must install the build requirement.
python -m venv venv
pip install build
Then you must compile dlib and install it in your environment. Type:
python -m build --wheel
pip install dist/dlib-<version>.whl
Or download dlib using PyPi:
pip install dlib
Type the following to compile and run the dlib unit test suite:
cd dlib/test
mkdir build
cd build
cmake ..
cmake --build . --config Release
./dtest --runall
Note that on windows your compiler might put the test executable in a subfolder called Release
. If that's the case then you have to go to that folder before running the test.
This library is licensed under the Boost Software License, which can be found in dlib/LICENSE.txt. The long and short of the license is that you can use dlib however you like, even in closed source commercial software.
This research is based in part upon work supported by the Office of the Director of National Intelligence (ODNI), Intelligence Advanced Research Projects Activity (IARPA) under contract number 2014-14071600010. The views and conclusions contained herein are those of the authors and should not be interpreted as necessarily representing the official policies or endorsements, either expressed or implied, of ODNI, IARPA, or the U.S. Government.