Is deep learning bad at fitting simple non linear functions outside training scope (extrapolating)?
问题 I am trying to create a simple deep-learning based model to predict y=x**2 But looks like deep learning is not able to learn the general function outside the scope of its training set . Intuitively I can think that neural network might not be able to fit y=x**2 as there is no multiplication involved between the inputs. Please note I am not asking how to create a model to fit x**2 . I have already achieved that. I want to know the answers to following questions: Is my analysis correct? If the