Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
fc0039f
chore(deps): bump faraday from 2.14.0 to 2.14.1
dependabot[bot] Feb 9, 2026
d837142
Add description for reinforcement-learning topic
FlorentTariolle Mar 8, 2026
5aaad23
Add description for transformer topic
FlorentTariolle Mar 8, 2026
17f941c
Add description for vae topic
FlorentTariolle Mar 8, 2026
221675e
Add description for representation-learning topic
FlorentTariolle Mar 8, 2026
a8c116d
Add description for world-models topic
FlorentTariolle Mar 8, 2026
647b56b
Update deep-learning topic description
FlorentTariolle Mar 8, 2026
fcc2f95
Fix display_name casing for reinforcement-learning topic
FlorentTariolle Mar 8, 2026
e18df5c
Fix display_name casing for representation-learning topic
FlorentTariolle Mar 8, 2026
4a408f7
Fix display_name casing for world-models topic
FlorentTariolle Mar 8, 2026
5d9f08d
Add description for adversarial-attacks topic
FlorentTariolle Mar 8, 2026
e45070a
Add description for imagenet topic
FlorentTariolle Mar 8, 2026
2ec2712
Fix deep-learning short_description length
FlorentTariolle Mar 8, 2026
db21fb3
Fix reinforcement-learning short_description length and duplication
FlorentTariolle Mar 8, 2026
eca2e6c
Fix vae short_description length
FlorentTariolle Mar 8, 2026
2addaca
Fix representation-learning short_description length
FlorentTariolle Mar 8, 2026
2548024
Fix world-models short_description length
FlorentTariolle Mar 8, 2026
81ee39d
Fix adversarial-attacks short_description length
FlorentTariolle Mar 8, 2026
2662cc1
Merge pull request #5065 from FlorentTariolle/add-reinforcement-learn…
ahpook Mar 10, 2026
3cbc708
Merge pull request #5039 from github/dependabot/bundler/faraday-2.14.1
ahpook Mar 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source "https://rubygems.org"

gem "faraday", "2.14.0"
gem "faraday", "2.14.1"
gem "faraday-retry", "2.4.0"
gem "github-pages", "~> 232", group: :jekyll_plugins
gem "json", "2.18.0"
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ GEM
ffi (>= 1.15.0)
eventmachine (1.2.7)
execjs (2.10.0)
faraday (2.14.0)
faraday (2.14.1)
faraday-net_http (>= 2.0, < 3.5)
json
logger
Expand Down Expand Up @@ -366,7 +366,7 @@ PLATFORMS
x86_64-linux-musl

DEPENDENCIES
faraday (= 2.14.0)
faraday (= 2.14.1)
faraday-retry (= 2.4.0)
fastimage
github-pages (~> 232)
Expand Down
7 changes: 7 additions & 0 deletions topics/adversarial-attacks/index.md
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.
5 changes: 2 additions & 3 deletions topics/deep-learning/index.md
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.
7 changes: 7 additions & 0 deletions topics/imagenet/index.md
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.
7 changes: 7 additions & 0 deletions topics/reinforcement-learning/index.md
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.
7 changes: 7 additions & 0 deletions topics/representation-learning/index.md
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.
7 changes: 7 additions & 0 deletions topics/transformer/index.md
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.
8 changes: 8 additions & 0 deletions topics/vae/index.md
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.
6 changes: 6 additions & 0 deletions topics/world-models/index.md
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.
Loading