Open Internet by MindsNet
keras-team/keras
Repository: keras-team/keras Stars: 64185 Forks: 19742 Primary language: Python Discovery sources: awesome:awesome-python, best:topic:data-science archived:false fork:false pushed:>=2025-01-01 Selection score: 82.26 Usefulness score: 9.7 Source confidence score: 4.1 Languages: Python, Shell Topics: data-science, deep-learning, jax, machine-learning, neural-networks, python, pytorch, tensorflow Summary: Deep Learning for humans README excerpt: # Keras 3: Deep Learning for Humans Keras 3 is a multi-backend deep learning framework, with support for JAX, TensorFlow, PyTorch, and OpenVINO (for inference-only). Effortlessly build and train models for computer vision, natural language processing, audio processing, timeseries forecasting, recommender systems, etc. - **Accelerated model development**: Ship deep learning solutions faster thanks to the high-level UX of Keras and the availability of easy-to-debug runtimes like PyTorch or JAX eager execution. - **State-of-the-art performance**: By picking the backend that is the fastest for your model architecture (often JAX!), leverage speedups ranging from 20% to 350% compared to other frameworks. [Benchmark here](https://keras.io/getting_started/benchmarks/). - **Datacenter-scale training**: Scale confidently from your laptop to large clusters of GPUs or TPUs. Join nearly three million developers, from burgeoning startups to global enterprises, in harnessing the power of Keras 3. ## Installation ### Install with pip Keras 3 is available on PyPI as `keras`. Note that Keras 2 remains available as the `tf-keras` package. 1. Install `keras`: ``` pip install keras --upgrade ``` 2. Install backend package(s). To use `keras`, you should also install the backend of choice: `tensorflow`, `jax`, or `torch`. Additionally, The `openvino` backend is available with support for model inference only. ### Local installation #### Minimal installation Keras 3 is compatible with Linux and macOS systems. For Windows users, we recommend using WSL2 to run Keras. To install a local development v
Computing & Technology, Computer Science, Machine Learning