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
For importing some librairies I had to slightly modify the code. As an example:
# from sklearn.externals import joblib # old line
import joblib # new line
I am using Windows, so I also had to add a few lines at several places to take into account the Windows' separator used for the paths. As an example:
path_raw_image = path_raw_image.replace(os.sep, '/') #new line
filename = path_raw_image.split('/')[-1]
I managed to run the program until the end with my own photos of bee wings. However it doesn't work, because all photos are marked as "invalid".
However, the online application https://deepwings.ddns.net/ works well with my photos. Is the code different between the one here compared to the Deep Wings website?
Any feedback or help is welcolme :)
Best regards,
Nicolas
The text was updated successfully, but these errors were encountered:
Hello,
Is this program still used or updated?
I tried to run it but I have met some issues.
For importing some librairies I had to slightly modify the code. As an example:
I am using Windows, so I also had to add a few lines at several places to take into account the Windows' separator used for the paths. As an example:
I managed to run the program until the end with my own photos of bee wings. However it doesn't work, because all photos are marked as "invalid".
However, the online application https://deepwings.ddns.net/ works well with my photos. Is the code different between the one here compared to the Deep Wings website?
Any feedback or help is welcolme :)
Best regards,
Nicolas
The text was updated successfully, but these errors were encountered: