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
~\anaconda3\envs\gpu3\lib\zipfile.py in _RealGetContents(self)
1196 raise BadZipFile("File is not a zip file")
1197 if not endrec:
-> 1198 raise BadZipFile("File is not a zip file")
1199 if self.debug > 1:
1200 print(endrec)
BadZipFile: File is not a zip file
The text was updated successfully, but these errors were encountered:
ctx = mx.gpu(0)
bert = BertEmbedding(ctx=ctx)
This code is giving bad zip file error each time it is run I also tried doing it with glunlp. The error is as follows
BadZipFile Traceback (most recent call last)
in
1 ctx = mx.gpu(0)
----> 2 bert = BertEmbedding(ctx=ctx)
~\anaconda3\envs\gpu3\lib\zipfile.py in _RealGetContents(self)
1196 raise BadZipFile("File is not a zip file")
1197 if not endrec:
-> 1198 raise BadZipFile("File is not a zip file")
1199 if self.debug > 1:
1200 print(endrec)
BadZipFile: File is not a zip file
The text was updated successfully, but these errors were encountered: