7391aec984c1e9e0899d51e6b0538483c37ec8fb,torchdiffeq/_impl/misc.py,,_check_inputs,#,134
Before Change
tensor_input = False
if torch.is_tensor(y0):
tensor_input = True
y0 = (y0,)
_base_nontuple_func_ = func
func = lambda t, y: (_base_nontuple_func_(t, y[0]),)
assert isinstance(y0, tuple), "y0 must be either a torch.Tensor or a tuple"
for y0_ in y0:
assert torch.is_tensor(y0_), "each element must be a torch.Tensor but received {}".format(type(y0_))
if _decreasing(t):
t = -t
_base_reverse_func = func
func = lambda t, y: tuple(-f_ for f_ in _base_reverse_func(-t, y))
After Change
if not torch.is_tensor(y0):
assert isinstance(y0, tuple), "y0 must be either a torch.Tensor or a tuple"
tensor_input = False
shapes = [y0_.shape for y0_ in y0]
y0 = torch.cat([y0_.reshape(-1) for y0_ in y0])
func = _TupleFunc(func, shapes)
if not torch.is_floating_point(y0):
raise TypeError("`y0` must be a floating point Tensor but is a {}".format(y0.type()))
if _decreasing(t):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 8
Instances Project Name: rtqichen/torchdiffeq
Commit Name: 7391aec984c1e9e0899d51e6b0538483c37ec8fb
Time: 2020-07-27
Author: 33688385+patrick-kidger@users.noreply.github.com
File Name: torchdiffeq/_impl/misc.py
Class Name:
Method Name: _check_inputs
Project Name: dnouri/skorch
Commit Name: 2adee59fee240ab8f26e9137ca0620be0fb87087
Time: 2020-04-07
Author: benobe22@gmail.com
File Name: skorch/tests/test_utils.py
Class Name: TestToDevice
Method Name: test_check_device_tuple_torch_tensor
Project Name: databricks/spark-deep-learning
Commit Name: a5a6e074ed792733fc2547e1544711d52659d3fd
Time: 2017-07-11
Author: sueann@databricks.com
File Name: python/tests/transformers/named_image_test.py
Class Name: NamedImageTransformerBaseTestCase
Method Name: test_featurization