From f09003d95dd465c28d28e1ae87d7cf21367b24a1 Mon Sep 17 00:00:00 2001 From: Derek Kim Date: Thu, 17 Jan 2019 09:50:55 -0800 Subject: [PATCH] A trivial typo fixed in onnx.verify.verify (#15871) Summary: A trivial typo fixing. Pull Request resolved: https://github.com/pytorch/pytorch/pull/15871 Differential Revision: D13709588 Pulled By: ezyang fbshipit-source-id: 84460e53e30470bef72bc836c08fd149b4d725cf --- test/onnx/verify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/onnx/verify.py b/test/onnx/verify.py index f36415d..c8521cd 100644 --- a/test/onnx/verify.py +++ b/test/onnx/verify.py @@ -252,7 +252,7 @@ def verify(model, args, backend, verbose=False, training=False, rtol=1e-3, atol= PyTorch developers. You can also debug the issue yourself by removing suffixes of operators from your model until verification passes. - For reproduceability, we recommend explicitly setting PyTorch's seed before + For reproducibility, we recommend explicitly setting PyTorch's seed before invoking this function. Arguments: -- 2.7.4