Training a model

Hey there.

I wondered what is your experience about training a model with steps defined in first Lesson:

  1. Enable data augmentation, and precompute=True
  2. Use lr_find() to find highest learning rate where loss is still clearly improving
  3. Train last layer from precomputed activations for 1-2 epochs
  4. Train last layer with data augmentation (i.e. precompute=False) for 2-3 epochs with cycle_len=1
  5. Unfreeze all layers
  6. Set earlier layers to 3x-10x lower learning rate than next higher layer
  7. Use lr_find() again
  8. Train full network with cycle_mult=2 until over-fitting

In Lesson 2 Jeremy showed how each of these steps improved the score of a model on a Dog Breeds Kaggle competition. I am trying to achieve similar results like to make every step work. So far not so good. Model accuracy on precompute = True is almost the same as after steps 4-8. I tried two models (inception_v4 and inceptionresnet), different variations of image size, batch size, dropout.

Did you find a key how to apply these scheme? What am I missing?

3 Likes

@sermakarevich I am sure Jeremy can answer much better than me, but just wanted to share with you my own experience thus far. :slight_smile:

After following these steps on a couple of different datasets/problems I have found that the most crucial thing to get right is the learning rate. lr.find() helps to get the top layer learning rate fairly easily but it can take quite a bit of trial & error to get the other two learning rates right for the earlier layers when unfreezing i.e. [lr/?, lr/?, lr].

One other parameter that isn’t really emphasized here is you can also play around with cycle_len setting that at diff values besides 1. (2, 3, 4 etc.)

Using different image sizes should improve accuracy. If you are having trouble seeing results with doing this in-between training epochs, another method you can try is to average the predictions that were generated from training runs with different image sizes as it can sometimes achieve the same/similar results. For example, I have personally used this technique before with good results (Invasive Species).

You mentioned model accuracy on precompute = True being the same after steps 4 to 8. I’m not sure I understand you correctly, but you shouldn’t be going back to precompute = True after steps 4 to 8. Also, imo I don’t think you should be spending too much time training with precompute = True nor even use it as a reliable benchmark for accuracy between models because in most cases you will need to do most of your training with precompute = False.

8 Likes

Thanks @jamesrequa. I was looking for an advice like yours.

I meant that accuracy of a model tuned with precompute = True (like 10 epochs with stepwise lr reduction and thats it) is ± the same as accuracy of a model trained with all these 8 steps. lr.find() and image size work well for me - I see their influence.

unfreeze did not work for me. I thought maybe thats because we are tuning models on a subset of images these models were completely trained on.

Indeed i did not play much with this multi - lr param, thanks will check it. Did it work for you in Dog Breeds?

3 Likes

OK I got your meaning now for this one.

I will agree with you that for this specific dataset for Dog Breeds since it is literally a subset of images from ImageNet so in this case unfreeze() won’t really help, in fact you may just end up hurting the Imagenet weights. However, I think this is a pretty rare case because in most challenges you face you will not be working with a dataset that was taken exactly the same from Imagenet. As long as there is any variation from Imagenet, then I think it probably helps to unfreeze and finetune layers. So basically to put it simply, its really just a matter of aligning these steps properly to the dataset you are dealing with.

To clarify in my first response I was really just speaking generally and not specifically about the Dog Breed challenge. I have used these steps on some other datasets already that I’m working with and so those were my main takeaways from that experience. For this challenge specifically, I personally think the key thing is to try to accumulate the most diverse range of “perspectives” of the data if that makes sense :slight_smile:

Anyway, I tend to take an empirical approach to each problem, rather than going in with any pre-conceived assumptions I basically try everything possible which can sometimes result in some “surprises”.

4 Likes

@sermakarevich, @jamesrequa, just to make the thread a bit more clear for future readers,

My understanding: "Precompute = true doesn’t add or take accuracy. Its only about efficiency What happens is that in the lessons it was used before doing data augmentation and unfreezing, it “happened to cross by” to say it so…I find a bit confusing to talk about “results with precompute= true”, I think it would be clearer to say before data augmentation, or before unfreezing and retraining weights of the model

And yes, I completely agree that the dataset being a subset of imagenet is a strong condition for good performance almost “out of the box” of the model.

One last hint, about cycle length. ÂżHave you noticed that you can try non integer numbers? (Like 1.5) Ive just been playing a bit with it but adds -even- more flexibility. (edit: not cycle length but cycle mult)

2 Likes

Sorry if I confused you. For me it is clear if you train your model with precompute parameter = true thats mean training only fc layers and no additional options affect your training process: neither data augmentation, nor unfreeze.

No I have not. What is your overall recommendation about cycle length and training a model in general?

Oh, cant really say much about training, almost all I thought I knew Im seeing that is outdated. :stuck_out_tongue:
(This cycle splitting thing I was playing with it today and found it good looking)

I haven’t tried non-integer cycle lengths myself! Will be interested to hear how it goes.

I just tried this with cycle_len but got the below error…did you mean cycle_mult cause that does work!
TypeError: 'float' object cannot be interpreted as an integer

@jeremy what would it even mean to do something like cycle_len=1 with cycle_mult=0.5 for example? I can’t quite wrap my head around it…hmmm I guess it would be halving the length of each cycle which is the equivalent of doing cycle_len = 0.5?

Ah yes you can definitely use non integer cycle_mult, although I haven’t actually tried it. Using a number <1 would be… strange!

Can you please recommend some datasets/competitions?

Oh, yes, my bad, I meant cycle_mult! Specifically the case when you just train cycle length = 2 and cycle mult =1.5 I found sometimes was ok when overfits fast.

Can you please update your comment above …

:yum:

Fair enough :wink: (I had already added an “edit” comment, in bold to the end of the comment, I think it’s all clear now…)

1 Like

I know some people are working on iceberg and cdiscount. I am personally working on passenger screening competition. Its been difficult because the data is not that easy to work with (3d body scans - although its possible to use 2d images taken from multiple angles) and while it is binary classification but it also requires localization/segmentation - predicting from 17 possible “zones” of the body where the threat(s) are located. While I did manage to rank in approx top 20 so far, but the rock stars at the top clearly know something I don’t as a few of them have near perfect scores with only a handful of submissions. (excluding the cheaters who hand-labeled) :smile:

3 Likes

Have you been using your own box for this competition (which has 16 GB RAM and a GTX 1070 IIRC) or the cloud?

Yes I’ve been using my own box with the specs you described.

1 Like

Thanks, I was curious because I have a GTX 1060 and 16 GB RAM.

1 Like

Have anybody tried to feed outputs from convolutional layers into say Keras models? Two strange things happened for me:

  1. I cant achieve even close log loss value having the same arhitecture in Keras 0.3 vs 0.2.
  2. Bcolz folders just disappeared, I assume after i called .reshape. disappeared is like self deleted )

updt fixed on my side

Something I discovered and just wanted to point out that if you are using a non-integer cycle_mult, do check the schedule plot. The math can actually give you an unexpected lr update schedule and the model might not be restarting at all. For e.g.,this is what I got with cycle_mult of 1.2:

cycle_mult

I actually got adventurous and used 1.2. 1.5 might have been fine. But better to be careful with noninteger ones :slight_smile:

4 Likes