You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import numpy as np
solution = np.array([2.1, 1.3], dtype=np.float32)
input_size = solution.shape[0]
times = [1, 2, 3]
inputs = [(time, np.random.normal(size=input_size))
for time in times]
targets = [(time, np.dot(solution, input_)[np.newaxis])
for time, input_ in inputs]
Current behavior
E1126: Sequence index is not an int, slice, or instance with __index__ (invalid-sequence-index)
Steps to reproduce
Current behavior
pylint --version output
pylint 2.2.2
astroid 2.1.0
Python 3.7.0 (default, Sep 6 2018, 18:40:31)
[GCC 7.3.0]
The text was updated successfully, but these errors were encountered: