question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Assignment 2 : Neural network bits fail with java.lang.IndexOutOfBoundsException

See original GitHub issue

Running the following files with Jython throws an Index out of bounds error (when using CreditApprovalData or PenDigitsData).

  • NN-Backprop.py
  • NN-GA.py
  • NN-RHC.py
  • NN-SA.py

$ jython NN-Backprop.py

Using seed 653091685

Error results for Backprop

Traceback (most recent call last): File “NN-Backprop.py”, line 48, in <module> main() File “NN-Backprop.py”, line 38, in main train(BatchBackPropagationTrainer(data_set, classification_network, measure, rule), classification_network, File “/CS-7641-assignments/assignment2/base.py”, line 132, in train oa.train() at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248) at java.base/java.util.Objects.checkIndex(Objects.java:372) at java.base/java.util.ArrayList.get(ArrayList.java:440) at func.nn.Layer.getNode(Layer.java:43) at func.nn.Layer.setActivations(Layer.java:60) at func.nn.LayeredNetwork.setInputValues(LayeredNetwork.java:53) at func.nn.backprop.BatchBackPropagationTrainer.train(BatchBackPropagationTrainer.java:46) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:564)

java.lang.IndexOutOfBoundsException: java.lang.IndexOutOfBoundsException: Index 8 out-of-bounds for length 8 `

Issue Analytics

  • State:open
  • Created 5 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
cmaroncommented, Mar 7, 2019

@timuster and @sw-yx I’ve updated the readme, let me know if you have more to add.

1reaction
cmaroncommented, Feb 27, 2019

If I’m following correctly you’re saying the INPUT_LAYER and OUTPUT_LAYER settings have to be changed for the data sets and that’s not clear in the readme? If so feel free to open a PR. An alternative might be to update base.py in order specify these settings in one place, similar to how DS_NAME is set there. In fact all those layer settings should probably be in base.py

Read more comments on GitHub >

github_iconTop Results From Across the Web

No results found

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found