07 Milestone 1 Food Vision Fine-Tuning Model Error #586
-
| Whilst fine-tuning my model i get this error Here is my code:  | 
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            mrdbourke
          
      
      
        Sep 21, 2023 
      
    
    Replies: 1 comment 1 reply
-
| Hi @supermarios77 , It looks like your model shapes may be different to your data shapes. The error: Is suggesting that maybe your model was trained on a shape of  | 
Beta Was this translation helpful? Give feedback.
                  
                    1 reply
                  
                
            
      Answer selected by
        supermarios77
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Hi @supermarios77 ,
It looks like your model shapes may be different to your data shapes.
The error:
Is suggesting that maybe your model was trained on a shape of
(None, 1)where as you data is(None, 101)-- can you check the shapes of your model's output layer/shape of your data?