Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tensorflow | 172,522 | 327 | 77 | a day ago | 46 | October 23, 2019 | 2,273 | apache-2.0 | C++ | |
An Open Source Machine Learning Framework for Everyone | ||||||||||
Transformers | 88,193 | 64 | 911 | a day ago | 91 | June 21, 2022 | 618 | apache-2.0 | Python | |
🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX. | ||||||||||
Pytorch | 64,473 | 146 | a day ago | 23 | August 10, 2022 | 11,492 | other | C++ | ||
Tensors and Dynamic neural networks in Python with strong GPU acceleration | ||||||||||
Keras | 57,737 | 330 | a day ago | 68 | May 13, 2022 | 368 | apache-2.0 | Python | ||
Deep Learning for humans | ||||||||||
Cs Video Courses | 53,706 | 9 days ago | 14 | |||||||
List of Computer Science courses with video lectures. | ||||||||||
Faceswap | 43,824 | a month ago | 15 | gpl-3.0 | Python | |||||
Deepfakes Software For All | ||||||||||
Tensorflow Examples | 42,312 | 5 months ago | 218 | other | Jupyter Notebook | |||||
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2) | ||||||||||
D2l Zh | 40,601 | 1 | 6 days ago | 45 | March 25, 2022 | 21 | apache-2.0 | Python | ||
《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被60多个国家的400多所大学用于教学。 | ||||||||||
100 Days Of Ml Code | 40,344 | 16 days ago | 61 | mit | ||||||
100 Days of ML Coding | ||||||||||
Deepfacelab | 37,877 | 16 days ago | 510 | gpl-3.0 | Python | |||||
DeepFaceLab is the leading software for creating deepfakes. |
Caer is a lightweight, high-performance Vision library for high-performance AI research. We wrote this framework to simplify your approach towards Computer Vision by abstracting away unnecessary boilerplate code giving you the flexibility to quickly prototype deep learning models and research ideas. The end result is a library quite different in its design, that’s easy to understand, plays well with others, and is a lot of fun to use.
Our elegant, type-checked API and design philosophy makes Caer ideal for students, researchers, hobbyists and even experts in the fields of Deep Learning and Computer Vision.
Caer is a Python library that consists of the following components:
Component | Description |
---|---|
caer | A lightweight GPU-accelerated Computer Vision library for high-performance AI research |
caer.color | Colorspace operations |
caer.data | Standard high-quality test images and example data |
caer.path | OS-specific path manipulations |
caer.preprocessing | Image preprocessing utilities. |
caer.transforms | Powerful image transformations and augmentations |
caer.video | Video processing utilities |
Usually, Caer is used either as:
See the Caer Installation guide for detailed installation instructions (including building from source).
Currently, caer
supports releases of Python 3.6 onwards; Python 2 is not supported (nor recommended).
To install the current release:
$ pip install --upgrade caer
import caer
# Load a standard 640x427 test image that ships out-of-the-box with caer
sunrise = caer.data.sunrise(rgb=True)
# Resize the image to 400x400 while MAINTAINING aspect ratio
resized = caer.resize(sunrise, target_size=(400,400), preserve_aspect_ratio=True)
For more examples, see the Caer demos or Read the documentation
We appreciate all contributions, feedback and issues. If you plan to contribute new features, utility functions, or extensions to the core, please go through our Contribution Guidelines.
To contribute, start working through the caer
codebase, read the Documentation, navigate to the Issues tab and start looking through interesting issues.
Current contributors can be viewed either from the Contributors file or by using the caer.__contributors__
command.
If you have any questions, please:
Caer is open-source and released under the MIT License.
If you want to cite the framework feel free to use this (but only if you loved it 😊):
@article{jasmcaus,
title={Caer},
author={Dsouza, Jason},
journal={GitHub. Note: https://github.com/jasmcaus/caer},
volume={2},
year={2020-2021}
}