I already added in pom.xml but when run the program it produce error " couldn't load main class? code: https://github.com/ali2210/Mxnet reference: https://mxnet.incubator.apache.org/tutorials/scala/mxnet_scala_on_intellij.html
Asked
Active
Viewed 103 times
1 Answers
1
First of all, you have unnecessary ]
in a link to Github (Your link doesn't work).
You need to add object App extends App
instead of object App
or define main method def main(args: Array[String]): Unit = { }
inside App
object

Patryk Rudnicki
- 755
- 1
- 8
- 21
-
Thanks i will try – Ali Hassan May 15 '18 at 08:07
-
@AliHassan is it works? If yes please set this question as solved. If no and you need some help please contact me and give more details – Patryk Rudnicki May 15 '18 at 16:10