Data augmentation in test/validation set?












5















It is common practice to augment data (add samples programmatically, such as random crops, etc. in the case of a dataset consisting of images) on both training and test set, or just the training data set?










share|improve this question

























  • Just training. Golden Rule - Never touch test set. Reason - Test set represents unseen data when you put your model in production.

    – saurabheights
    Dec 30 '17 at 20:38
















5















It is common practice to augment data (add samples programmatically, such as random crops, etc. in the case of a dataset consisting of images) on both training and test set, or just the training data set?










share|improve this question

























  • Just training. Golden Rule - Never touch test set. Reason - Test set represents unseen data when you put your model in production.

    – saurabheights
    Dec 30 '17 at 20:38














5












5








5


1






It is common practice to augment data (add samples programmatically, such as random crops, etc. in the case of a dataset consisting of images) on both training and test set, or just the training data set?










share|improve this question
















It is common practice to augment data (add samples programmatically, such as random crops, etc. in the case of a dataset consisting of images) on both training and test set, or just the training data set?







machine-learning deep-learning






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 30 '17 at 21:42







rodrigo-silveira

















asked Dec 29 '17 at 23:31









rodrigo-silveirarodrigo-silveira

5,89644472




5,89644472













  • Just training. Golden Rule - Never touch test set. Reason - Test set represents unseen data when you put your model in production.

    – saurabheights
    Dec 30 '17 at 20:38



















  • Just training. Golden Rule - Never touch test set. Reason - Test set represents unseen data when you put your model in production.

    – saurabheights
    Dec 30 '17 at 20:38

















Just training. Golden Rule - Never touch test set. Reason - Test set represents unseen data when you put your model in production.

– saurabheights
Dec 30 '17 at 20:38





Just training. Golden Rule - Never touch test set. Reason - Test set represents unseen data when you put your model in production.

– saurabheights
Dec 30 '17 at 20:38












4 Answers
4






active

oldest

votes


















4














Only on training. Data augmentation is used to increase the size of training set and to get more different images.
Technically, you could use data augmentation on test set to see how model behaves on such images, but usually people don't do it.






share|improve this answer



















  • 1





    Any reason why the test set or validation set is not augmented?

    – Anuj Gupta
    Sep 10 '18 at 11:51






  • 1





    In fact situation has changed a bit... There is a new method: test time augmentation. It means augmentation of test data could be used to improve predictions for cases when the object in image is too small. Here is an article with explanation: towardsdatascience.com/…

    – Andrey Lukyanenko
    Sep 11 '18 at 3:34



















1














Data augmentation is done only on training set as it helps the model become more generalize and robust. So there's no point of augmenting the test set.






share|improve this answer































    1














    This answer on stats.SE makes the case for applying crops on the validation / test sets so as to make that input similar the the input in the training set that the network was trained on.






    share|improve this answer































      0














      Do it only on the training set.



      The reason why we use a training and a test set in the first place is that we want to estimate the error our system will have in reality. So the data for the test set should be as close to real data as possible.



      If you do it on the test set, you might have the problem that you introduce errors. For example, say you want to recognize digits and you augment by rotating. Then a 6 might look like a 9.






      share|improve this answer
























        Your Answer






        StackExchange.ifUsing("editor", function () {
        StackExchange.using("externalEditor", function () {
        StackExchange.using("snippets", function () {
        StackExchange.snippets.init();
        });
        });
        }, "code-snippets");

        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "1"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48029542%2fdata-augmentation-in-test-validation-set%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        4














        Only on training. Data augmentation is used to increase the size of training set and to get more different images.
        Technically, you could use data augmentation on test set to see how model behaves on such images, but usually people don't do it.






        share|improve this answer



















        • 1





          Any reason why the test set or validation set is not augmented?

          – Anuj Gupta
          Sep 10 '18 at 11:51






        • 1





          In fact situation has changed a bit... There is a new method: test time augmentation. It means augmentation of test data could be used to improve predictions for cases when the object in image is too small. Here is an article with explanation: towardsdatascience.com/…

          – Andrey Lukyanenko
          Sep 11 '18 at 3:34
















        4














        Only on training. Data augmentation is used to increase the size of training set and to get more different images.
        Technically, you could use data augmentation on test set to see how model behaves on such images, but usually people don't do it.






        share|improve this answer



















        • 1





          Any reason why the test set or validation set is not augmented?

          – Anuj Gupta
          Sep 10 '18 at 11:51






        • 1





          In fact situation has changed a bit... There is a new method: test time augmentation. It means augmentation of test data could be used to improve predictions for cases when the object in image is too small. Here is an article with explanation: towardsdatascience.com/…

          – Andrey Lukyanenko
          Sep 11 '18 at 3:34














        4












        4








        4







        Only on training. Data augmentation is used to increase the size of training set and to get more different images.
        Technically, you could use data augmentation on test set to see how model behaves on such images, but usually people don't do it.






        share|improve this answer













        Only on training. Data augmentation is used to increase the size of training set and to get more different images.
        Technically, you could use data augmentation on test set to see how model behaves on such images, but usually people don't do it.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 30 '17 at 5:02









        Andrey LukyanenkoAndrey Lukyanenko

        1,5592612




        1,5592612








        • 1





          Any reason why the test set or validation set is not augmented?

          – Anuj Gupta
          Sep 10 '18 at 11:51






        • 1





          In fact situation has changed a bit... There is a new method: test time augmentation. It means augmentation of test data could be used to improve predictions for cases when the object in image is too small. Here is an article with explanation: towardsdatascience.com/…

          – Andrey Lukyanenko
          Sep 11 '18 at 3:34














        • 1





          Any reason why the test set or validation set is not augmented?

          – Anuj Gupta
          Sep 10 '18 at 11:51






        • 1





          In fact situation has changed a bit... There is a new method: test time augmentation. It means augmentation of test data could be used to improve predictions for cases when the object in image is too small. Here is an article with explanation: towardsdatascience.com/…

          – Andrey Lukyanenko
          Sep 11 '18 at 3:34








        1




        1





        Any reason why the test set or validation set is not augmented?

        – Anuj Gupta
        Sep 10 '18 at 11:51





        Any reason why the test set or validation set is not augmented?

        – Anuj Gupta
        Sep 10 '18 at 11:51




        1




        1





        In fact situation has changed a bit... There is a new method: test time augmentation. It means augmentation of test data could be used to improve predictions for cases when the object in image is too small. Here is an article with explanation: towardsdatascience.com/…

        – Andrey Lukyanenko
        Sep 11 '18 at 3:34





        In fact situation has changed a bit... There is a new method: test time augmentation. It means augmentation of test data could be used to improve predictions for cases when the object in image is too small. Here is an article with explanation: towardsdatascience.com/…

        – Andrey Lukyanenko
        Sep 11 '18 at 3:34













        1














        Data augmentation is done only on training set as it helps the model become more generalize and robust. So there's no point of augmenting the test set.






        share|improve this answer




























          1














          Data augmentation is done only on training set as it helps the model become more generalize and robust. So there's no point of augmenting the test set.






          share|improve this answer


























            1












            1








            1







            Data augmentation is done only on training set as it helps the model become more generalize and robust. So there's no point of augmenting the test set.






            share|improve this answer













            Data augmentation is done only on training set as it helps the model become more generalize and robust. So there's no point of augmenting the test set.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Dec 30 '17 at 22:06









            Abhishek PatelAbhishek Patel

            907




            907























                1














                This answer on stats.SE makes the case for applying crops on the validation / test sets so as to make that input similar the the input in the training set that the network was trained on.






                share|improve this answer




























                  1














                  This answer on stats.SE makes the case for applying crops on the validation / test sets so as to make that input similar the the input in the training set that the network was trained on.






                  share|improve this answer


























                    1












                    1








                    1







                    This answer on stats.SE makes the case for applying crops on the validation / test sets so as to make that input similar the the input in the training set that the network was trained on.






                    share|improve this answer













                    This answer on stats.SE makes the case for applying crops on the validation / test sets so as to make that input similar the the input in the training set that the network was trained on.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 26 '18 at 13:05









                    Tom HaleTom Hale

                    7,8205166




                    7,8205166























                        0














                        Do it only on the training set.



                        The reason why we use a training and a test set in the first place is that we want to estimate the error our system will have in reality. So the data for the test set should be as close to real data as possible.



                        If you do it on the test set, you might have the problem that you introduce errors. For example, say you want to recognize digits and you augment by rotating. Then a 6 might look like a 9.






                        share|improve this answer




























                          0














                          Do it only on the training set.



                          The reason why we use a training and a test set in the first place is that we want to estimate the error our system will have in reality. So the data for the test set should be as close to real data as possible.



                          If you do it on the test set, you might have the problem that you introduce errors. For example, say you want to recognize digits and you augment by rotating. Then a 6 might look like a 9.






                          share|improve this answer


























                            0












                            0








                            0







                            Do it only on the training set.



                            The reason why we use a training and a test set in the first place is that we want to estimate the error our system will have in reality. So the data for the test set should be as close to real data as possible.



                            If you do it on the test set, you might have the problem that you introduce errors. For example, say you want to recognize digits and you augment by rotating. Then a 6 might look like a 9.






                            share|improve this answer













                            Do it only on the training set.



                            The reason why we use a training and a test set in the first place is that we want to estimate the error our system will have in reality. So the data for the test set should be as close to real data as possible.



                            If you do it on the test set, you might have the problem that you introduce errors. For example, say you want to recognize digits and you augment by rotating. Then a 6 might look like a 9.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 5 '18 at 9:12









                            Martin ThomaMartin Thoma

                            44.7k61320543




                            44.7k61320543






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Stack Overflow!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f48029542%2fdata-augmentation-in-test-validation-set%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                To store a contact into the json file from server.js file using a class in NodeJS

                                Redirect URL with Chrome Remote Debugging Android Devices

                                Dieringhausen