Skip to content
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

Add definition for 'fine-tuning (deep learning)' (English) and 'transfer learning (deep learning)' (English) #766

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
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
28 changes: 27 additions & 1 deletion glossary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11112,7 +11112,6 @@
create a cycle. This allows the network to exhibit behavior that is dynamic over time. This
type of network is applicable to tasks like speech and handwriting recognition.


- slug: epoch_dl
ref:
- deep_learning
Expand Down Expand Up @@ -11208,3 +11207,30 @@
es un gráfico que muestra el desempeño de un clasificador binario con diferentes umbrales de [clasificación](#classification)
La curva se obtiene graficando la tasa de verdaderos positivos (también conocida como Recall o [Sensibilidad](#sensitivity))
a lo largo del eje vertical y la taza de falsos positivos a lo largo del eje horizontal.

- slug: fine_tuning
ref:
- deep_learning
- neural_network
- transfer_learning

en:
term: fine-tuning (deep learning)
def: >
Fine-tuning is an approach to transfer learning in which a pre-trained network is adapted to the
specifics of a new dataset.

- slug: transfer_learning
ref:
- deep_learning
- transfer_learning

en:
term: transfer learning (deep learning)
def: >
Transfer learning is a specific form of deep learning that has 2 stages. First, in the pre-training
phase, a neural network is trained on a (typically large) generic dataset. Second, the the
fine-tuning phase, the neural network is adapted to the specifics of a (typically smaller) new
dataset. The idea is that the network will capture generic knowledge in the pre-training phase
that is relevant for learning in the fine-tuning task.