summaryrefslogtreecommitdiff
path: root/examples/domain-adaptation/plot_otda_linear_mapping.py
diff options
context:
space:
mode:
authorD.J. Sutherland <djs@djsutherland.ml>2020-05-13 15:16:21 -0500
committerGitHub <noreply@github.com>2020-05-13 22:16:21 +0200
commit1511ecc67692773f016cc94190785faa33eab2d5 (patch)
tree1a394bd357cc71e2c139507a49de213b414ce075 /examples/domain-adaptation/plot_otda_linear_mapping.py
parent02adb61543bd92158bc2a3193e3c98fd026a6804 (diff)
rename I to img in examples, since flake8 complains now (#176)
Diffstat (limited to 'examples/domain-adaptation/plot_otda_linear_mapping.py')
-rw-r--r--examples/domain-adaptation/plot_otda_linear_mapping.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/domain-adaptation/plot_otda_linear_mapping.py b/examples/domain-adaptation/plot_otda_linear_mapping.py
index dbf16b8..be47510 100644
--- a/examples/domain-adaptation/plot_otda_linear_mapping.py
+++ b/examples/domain-adaptation/plot_otda_linear_mapping.py
@@ -79,9 +79,9 @@ pl.show()
# ---------------
-def im2mat(I):
+def im2mat(img):
"""Converts and image to matrix (one pixel per line)"""
- return I.reshape((I.shape[0] * I.shape[1], I.shape[2]))
+ return img.reshape((img.shape[0] * img.shape[1], img.shape[2]))
def mat2im(X, shape):
@@ -89,8 +89,8 @@ def mat2im(X, shape):
return X.reshape(shape)
-def minmax(I):
- return np.clip(I, 0, 1)
+def minmax(img):
+ return np.clip(img, 0, 1)
# Loading images