mirror of
https://github.com/Shawn-Shan/fawkes.git
synced 2024-12-22 07:09:33 +05:30
Merge pull request #25 from cclauss/patch-1
Use ==/!= to compare constant literals (str, bytes, int, float, tuple)
This commit is contained in:
commit
edd7df5dc6
@ -1,3 +1,4 @@
|
||||
import errno
|
||||
import glob
|
||||
import gzip
|
||||
import json
|
||||
@ -242,9 +243,9 @@ def fix_gpu_memory(mem_fraction=1):
|
||||
def preprocess(X, method):
|
||||
assert method in {'raw', 'imagenet', 'inception', 'mnist'}
|
||||
|
||||
if method is 'raw':
|
||||
if method == 'raw':
|
||||
pass
|
||||
elif method is 'imagenet':
|
||||
elif method == 'imagenet':
|
||||
X = imagenet_preprocessing(X)
|
||||
else:
|
||||
raise Exception('unknown method %s' % method)
|
||||
@ -255,9 +256,9 @@ def preprocess(X, method):
|
||||
def reverse_preprocess(X, method):
|
||||
assert method in {'raw', 'imagenet', 'inception', 'mnist'}
|
||||
|
||||
if method is 'raw':
|
||||
if method == 'raw':
|
||||
pass
|
||||
elif method is 'imagenet':
|
||||
elif method == 'imagenet':
|
||||
X = imagenet_reverse_preprocessing(X)
|
||||
else:
|
||||
raise Exception('unknown method %s' % method)
|
||||
|
Loading…
Reference in New Issue
Block a user