-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Add descriptions for ML/AI topics and update deep-learning #5065
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ahpook
merged 17 commits into
github:main
from
FlorentTariolle:add-reinforcement-learning-topic
Mar 10, 2026
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
d837142
Add description for reinforcement-learning topic
FlorentTariolle 5aaad23
Add description for transformer topic
FlorentTariolle 17f941c
Add description for vae topic
FlorentTariolle 221675e
Add description for representation-learning topic
FlorentTariolle a8c116d
Add description for world-models topic
FlorentTariolle 647b56b
Update deep-learning topic description
FlorentTariolle fcc2f95
Fix display_name casing for reinforcement-learning topic
FlorentTariolle e18df5c
Fix display_name casing for representation-learning topic
FlorentTariolle 4a408f7
Fix display_name casing for world-models topic
FlorentTariolle 5d9f08d
Add description for adversarial-attacks topic
FlorentTariolle e45070a
Add description for imagenet topic
FlorentTariolle 2ec2712
Fix deep-learning short_description length
FlorentTariolle db21fb3
Fix reinforcement-learning short_description length and duplication
FlorentTariolle eca2e6c
Fix vae short_description length
FlorentTariolle 2addaca
Fix representation-learning short_description length
FlorentTariolle 2548024
Fix world-models short_description length
FlorentTariolle 81ee39d
Fix adversarial-attacks short_description length
FlorentTariolle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| display_name: Adversarial attacks | ||
| short_description: Adversarial attacks craft perturbed inputs to mislead machine learning models into producing incorrect outputs. | ||
| topic: adversarial-attacks | ||
| wikipedia_url: https://en.wikipedia.org/wiki/Adversarial_machine_learning | ||
| --- | ||
| Adversarial attacks are techniques that craft intentionally perturbed inputs to mislead machine learning models into producing incorrect outputs. They are central to research in AI robustness, security, and trustworthiness. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,8 @@ | ||
| --- | ||
| aliases: deeplearning, deep-learning-tutorial, deep-learning-algorithms, deep-learning-papers | ||
| display_name: Deep learning | ||
| short_description: Deep Learning is an artificial neural network composed of many | ||
| layers. | ||
| short_description: Deep learning is a subset of machine learning that uses multi-layered neural networks to learn representations from data. | ||
| topic: deep-learning | ||
| wikipedia_url: https://en.wikipedia.org/wiki/Deep_learning | ||
| --- | ||
| Deep learning is an AI function and a subset of machine learning, used for processing large amounts of complex data. Deep learning can automatically create algorithms based on data patterns. | ||
| Deep learning is a subset of machine learning that uses artificial neural networks with multiple layers to automatically learn hierarchical representations from data. It powers modern breakthroughs in computer vision, natural language processing, speech recognition, and generative AI. |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 679 repos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| display_name: ImageNet | ||
| short_description: ImageNet is a large-scale visual database of labeled images organized according to the WordNet hierarchy. | ||
| topic: imagenet | ||
| wikipedia_url: https://en.wikipedia.org/wiki/ImageNet | ||
| --- | ||
| ImageNet is a large-scale visual database of labeled images organized according to the WordNet hierarchy. It has been a foundational benchmark for evaluating image classification and object recognition models in computer vision. |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 16k repos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| display_name: Reinforcement learning | ||
| short_description: Reinforcement learning is a machine learning paradigm where agents learn optimal behavior through environment interaction. | ||
| topic: reinforcement-learning | ||
| wikipedia_url: https://en.wikipedia.org/wiki/Reinforcement_learning | ||
| --- | ||
| Reinforcement learning is a machine learning paradigm focused on sequential decision-making, in which an autonomous agent learns optimal behavior by interacting with a dynamic environment to maximize cumulative reward signals. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| display_name: Representation learning | ||
| short_description: Representation learning is a set of machine learning techniques that automatically discover meaningful features from raw data. | ||
| topic: representation-learning | ||
| wikipedia_url: https://en.wikipedia.org/wiki/Feature_learning | ||
| --- | ||
| Representation learning is a set of techniques in machine learning that automatically discover compact and meaningful features from raw data. It underpins modern advances in natural language processing, computer vision, and speech recognition. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| display_name: Transformer | ||
| short_description: A transformer is a deep learning architecture based on self-attention mechanisms, designed to process sequential data in parallel. | ||
| topic: transformer | ||
| wikipedia_url: https://en.wikipedia.org/wiki/Transformer_(deep_learning_architecture) | ||
| --- | ||
| A transformer is a deep learning architecture based on self-attention mechanisms, designed to process sequential data in parallel. Transformers are the foundation of modern large language models and are widely used in natural language processing, computer vision, and generative AI. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| --- | ||
| aliases: variational-autoencoder | ||
| display_name: VAE | ||
| short_description: A variational autoencoder (VAE) is a generative model that learns compact latent representations using Bayesian inference. | ||
| topic: vae | ||
| wikipedia_url: https://en.wikipedia.org/wiki/Variational_autoencoder | ||
| --- | ||
| A variational autoencoder (VAE) is a generative model that combines deep learning with Bayesian inference to learn compact latent representations of data. VAEs are widely used for image generation, anomaly detection, and data augmentation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| display_name: World models | ||
| short_description: World models are neural networks that learn an environment's dynamics, enabling agents to simulate and plan in latent space. | ||
| topic: world-models | ||
| --- | ||
| World models are neural networks that learn an internal representation of an environment's dynamics, enabling agents to simulate and plan within a learned latent space. They are used in model-based reinforcement learning, robotics, and autonomous decision-making. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1120 repos