Getting an error “UnpicklingError: invalid load key, 'v'.” in Pytorch model deploying in Streamlit

I have deployed my app in my localhost
but When I try to deploy it here, it gives an error as

UnpicklingError: invalid load key, 'v'.
I understand this is because the .pth file is big(168mb),it’s not reading it
is there anyway else to load it there,

My repo is like this

repo:
   model:
         fasterrcnn.pth
   streamlit.py

My code is as
`WEIGHTS_FILE = './model/fasterrcnn.pth'`

Thanks for helping !

Pickle errors are usually due to a Python version or package version mismatch, not an issue with file size.

im getting the same error and ı couldnt figure out how to fix
here is my repo