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
Traceback (most recent call last):
File "main.py", line 4, in <module>
from trainer import Trainer
File "/home/ubuntu/workspace/BEGAN-tensorflow/trainer.py", line 4, in <module>
import StringIO
ModuleNotFoundError: No module named 'StringIO'
resolved
open trainer.py and add from io before import StringIO like this : from io import StringIO
The text was updated successfully, but these errors were encountered:
resolved
open trainer.py and add from io before import StringIO like this :
from io import StringIO
The text was updated successfully, but these errors were encountered: