the opening line has model = sequential
after the end of code line has
name= “my_model”
do we need to change my+model to model ? I’m getting a ValueError pointing to that line.
the opening line has model = sequential
after the end of code line has
name= “my_model”
do we need to change my+model to model ? I’m getting a ValueError pointing to that line.
The model name text is just a static attribute. You don’t need to modify it.
Hello @Joshua_Neft,
Please check this post out. my_model is fine, and even if you don’t give a name attribute there, Tensorflow will assign a name.
Cheers,
Raymond