Open GoodCoder666 opened 6 months ago
Description of changes:
arange is used here in the expression generating a list of legends:
arange
legend=["Col %d" % d for d in d2l.arange(6, 10)]
I think it's better to use the builtin range here (as the created tensor is only looped through with d).
range
d
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Description of changes:
arange
is used here in the expression generating a list of legends:I think it's better to use the builtin
range
here (as the created tensor is only looped through withd
).By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.