https://github.com/omr-ql/deep-learning-algorithms
This is my Deep Learning algorithms I have implemented so far.
https://github.com/omr-ql/deep-learning-algorithms
ai algorithms deep-learning programming python
Last synced: 7 months ago
JSON representation
This is my Deep Learning algorithms I have implemented so far.
- Host: GitHub
- URL: https://github.com/omr-ql/deep-learning-algorithms
- Owner: omr-ql
- Created: 2024-04-26T17:01:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-03T15:43:41.000Z (12 months ago)
- Last Synced: 2025-02-03T16:34:20.428Z (12 months ago)
- Topics: ai, algorithms, deep-learning, programming, python
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Deep-Learning-Algorithm
- **Artificial Neural Network (ANN)**
- ANNs are computational models inspired by the human brain. They consist of layers of neurons that hierarchically process data. ANNs can be used for various tasks, such as classification, regression, and pattern recognition.
- **Convolutional Neural Network (CNN)**
- CNN is a deep learning model primarily used to process grid-like data such as images. It uses convolutional layers to learn spatial hierarchies of features automatically.
- **Recurrent Neural Network (RNN)**
- RNNs are a neural network designed for sequential data, where node connections form cycles. It is well-suited for tasks like time series prediction, natural language processing, and speech recognition, as it can capture temporal dependencies.
- **Self-Organizing Map (SOM)**
- SOM is A type of unsupervised learning algorithm that uses neural networks to map high-dimensional data into lower-dimensional (typically 2D) grids. As it preserves the topological structure of the data, SOM is often used for clustering, data visualization, and dimensionality reduction. It helps identify patterns, similarities, and clusters within complex data sets.