You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying from last few days in google colab and I am getting issues in detectron2. The errors are as below
I got the below error
File "/content/SwinTextSpotter/detectron2/data/transforms/transform.py", line 46, in ExtentTransform
def init(self, src_rect, output_size, interp=Image.LINEAR, fill=0):
AttributeError: module 'PIL.Image' has no attribute 'LINEAR'. Did you mean: 'BILINEAR'?
To solve this I run the commands (to uninstall 10.2.0 and install 9.5.0)
!pip uninstall Pillow
!pip install Pillow==9.5.0
After that I am getting the following error
File "/content/SwinTextSpotter/detectron2/data/transforms/augmentation_impl.py", line 37, in
class SpeckleTransform(Transform):
NameError: name 'Transform' is not defined. Did you mean: 'CropTransform'?
Can you please help me
The text was updated successfully, but these errors were encountered:
I am trying from last few days in google colab and I am getting issues in detectron2. The errors are as below
I got the below error
File "/content/SwinTextSpotter/detectron2/data/transforms/transform.py", line 46, in ExtentTransform
def init(self, src_rect, output_size, interp=Image.LINEAR, fill=0):
AttributeError: module 'PIL.Image' has no attribute 'LINEAR'. Did you mean: 'BILINEAR'?
To solve this I run the commands (to uninstall 10.2.0 and install 9.5.0)
!pip uninstall Pillow
!pip install Pillow==9.5.0
After that I am getting the following error
File "/content/SwinTextSpotter/detectron2/data/transforms/augmentation_impl.py", line 37, in
class SpeckleTransform(Transform):
NameError: name 'Transform' is not defined. Did you mean: 'CropTransform'?
Can you please help me
The text was updated successfully, but these errors were encountered: