make exp3 works but no check
This commit is contained in:
@@ -83,7 +83,7 @@ class Predictor:
|
||||
:param image: 该列表的shape必须为28x28。
|
||||
:return: 预测结果。
|
||||
"""
|
||||
input = torch.Tensor(image).float()
|
||||
input = torch.tensor(image, dtype=torch.float32)
|
||||
assert(input.dim() == 2)
|
||||
assert(input.size(0) == 28)
|
||||
assert(input.size(1) == 28)
|
||||
|
||||
Reference in New Issue
Block a user