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
I was following the quickstart tutorial, with the following basic 3 commands
git clone https://github.com/eclipse/deeplearning4j-examples.git
cd dl4j-examples/
mvn clean install
On Tuesday (13.10.2020) these steps worked successfully (on a Xubuntu 20.4 virtual machine, running openjdk 8), but I then had to switch to another task. Today (16.10.2020) I went back to the tutorial on another Xubuntu VM (running openjdk 11 this time) and the mvn clean install step failed with a missing symbol on several classes (List, ArrayList and Arrays), plus a String[] is not a functional interface, all in DenseNetBuilder and DenseNetModel classes (both in org.deeplearning4j.examples.advanced.modelling.densenet.model package).
Issue Description
I was following the quickstart tutorial, with the following basic 3 commands
On Tuesday (13.10.2020) these steps worked successfully (on a Xubuntu 20.4 virtual machine, running openjdk 8), but I then had to switch to another task. Today (16.10.2020) I went back to the tutorial on another Xubuntu VM (running openjdk 11 this time) and the mvn clean install step failed with a missing symbol on several classes (List, ArrayList and Arrays), plus a String[] is not a functional interface, all in DenseNetBuilder and DenseNetModel classes (both in org.deeplearning4j.examples.advanced.modelling.densenet.model package).
Version Information
Contributing
add the missing imports
and change
into something like (my java 8 is rusty )
The text was updated successfully, but these errors were encountered: