Skip to content

Commit b9269e9

Browse files
authored
Update README.md
1 parent f0fafd6 commit b9269e9

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
# Transfer-Learning-in-keras---custom-data
22

3-
This repository shows how we can use transfer learning in keras with the example of training a 4 class classification model using VGG-16 and Resnet-50 pre-trained weights.
3+
This repository shows how we can use transfer learning in keras with the example of training a 4 class classification model using VGG-16 and Resnet-50 pre-trained weights.The vgg-16 and resnet-50 are the CNN models trained on more than a million images of 1000 different categories.
4+
5+
Transfer learning refers to the technique of using knowledge of one domain to another domain.i.e. a NN model trained on one dataset can be used for other dataset by fine-tuning the former network.
6+
7+
Definition : Given a source domain Ds and a learning task Ts, a target domain Dt and learning task Tt, transfer learning aims to help improve the learning of the the target predictive function Ft(.) in Dt using the knowledge in Ds and Ts, where Ds ≠ Dt, or Ts ≠ Tt.
8+
9+
A good explanation of how to use transfer learning practically is explained in http://cs231n.github.io/transfer-learning/
10+
11+
The vggface model weights is loaded as such without including the last layers by calling

0 commit comments

Comments
 (0)