Starting with encog framework workbench - executable-jar

I am new to neural network and I am having problem with starting Encog workbench.
I have read the quick start guide but it could not help me.I am trying to use Encog work-bench and every time I try to run the executable jar file I am getting the problem no manifest attribute, in graddle-wrapper.jar. Can anybody please help me out with this ?And do we need to learn Maven or Gradle for Encog or simply basic java is enough?
enter image description here

I had the same problem when I run the jar file. I imported the maven project into eclipse. After fixed a few compiler problems, I run it after one more fail since there is no configure file in the installation. After that, you can run it.

Related

Running projects from QtCreator after cmake install

have some real trouble with QtCreator on ubuntu 18 and was wondering if anyone could give me any help. This morning I installed cmake for another project I was working on, now when I try to run a project in qtcreator it is trying to deploy it via FTP, even though it is a Qt c++ project. I dont know if this is anything to do with cmake, but this worked last night before I installed it. My question is, can anybody explain to me how to run a project from QtCreator, on the local system( Terminal or otherwise, doesnt matter ) without any deployment issues. Im sorry if this is a stupid question, but I am extremely grateful for any hep
In a console, you can just cd into the project directory (where the .pro file resides) and execute "qmake" and then "make". That should compile your executable which you can then run using "./[executable filename]" or "/[path]/[executable filename]". Also, on the console you might see where this FTP transfer comes from. Also, in QtCreator you can set the build system and change that from cmake to something else to see if its a cmake problem.
So, not sure how this issue came up, but I have found a workaround after much trial and error. Open a project, In the left tab click Projects and under build and run select Run. In this menu deploy steps have already been added when i create a project, so these need to be deleted. Now in the Run section on the same screen Click add -> Custom executable and select the file that has already been built for the project in question. In my case this solves the above problem, but does not explain why QtCreator is trying to deploy C++ projects via FTP. If anyone out there is struggling with this issue feel free to post a question here and I will assist as much as possible!

XC UI Testing with AWS device farm giving error "Setup Test skipped: Not enough suites found to execute"?

Archive the project and created the IPA file with development profile after that followed the following link to create the UITest IPA
http://docs.aws.amazon.com/devicefarm/latest/developerguide/test-types-ios-xctest-ui.html
also to reconfirm whether I am doing any wrong checked the following tutorial
https://www.mobdesignapps.fr/blog/2016/9/17/running-your-test-on-aws-device-farm?utm_source=stackoverflow&utm_medium=answer&utm_term=37184633
where the steps stated
Prepare Your iOS XCTest UI Tests
Before you upload iOS XCTest UI tests to Device Farm for testing, make sure that your iOS XCTest UI test runner bundle is contained within a properly formatted .ipa file. To create an .ipa file, you can place your my-project-nameUITest-Runner.app bundle in an empty Payload directory. Next, archive the Payload directory into a .zip file and then change the file extension to .ipa. The *UITest-Runner.app bundle is produced by Xcode when you build your project for testing, and it can be found in the Products directory for your project.
But whatever I do getting the following error and my test getting skipped
Setup Test skipped: Not enough suites found to execute
Didn't understand what I have to do to make it working and can anyone please help to figure out the problem? Thanks in advance.
Try using Device farm's custom environment. The standard environment has a parsing step which can fail. If it does then this error will appear since it can't find the suites.
Sounds like your UITest target does not have any UITests defined. That's what the Suites found to execute message probably means. Does your UITest target define any tests?
I've found that it doesn't like Swift tests. Try switching to Obj-C.
A colleague of mine had the same problem, and his solution was to build using Xcode 10 instead of Xcode 11, which seems like an AWS bug to me.

ROS/Eclipse: Help needed for launching ROS program in Eclipse

hopefully someone can help with me this:
Im trying to build and launch my ROS package within eclipse.
I have followed the tutorial from the ROS homepage.
So far eclipse has found the package and its dependencies. (Eclipse
doesnt show any errors).
Also it's possible to build the workspace without error, although I am not sure
if it doing it correctly. When I'm trying to launch (I did a configuration file as the tutorial said) it shows following message:
< terminated > (exit value -1) stargazer_stargazer Configuration [C++ App] /home/.../app/gtest/libgtest.so
followed this tutorial: http://wiki.ros.org/IDEs#Reusing_your_shell.27s_environment
Figured it out. Seemed that the problem wasnt a problem. You have to configure your launch file at first in Eclipse so that Eclipse will be able to find the roslaunch in /bin folder.

Why doesn't the commands to build openBR run?

When I run the commands specified in OpenBR page to build the library, I am getting the following error. Its coming when I execute the sub module update command.
Is it because the the repository is not available in that location? If that's not the case, why is it not running?
(At first I think it should be a comment but I cant).
I have the same issue like you when I install it. I believe the problem here is the link to repos of doc of openbr(it's not correct, maybe it's changed). You can continue with build process, this error dont have any effect in it and use the doc from official website. Good luck!

Use Jenkins CI for Qt projects

I'm trying to use Jenkins for some project I have written in Qt framework.
There is qmake plug-in for Jenkins in Jenkins wiki page, although this plug-in doesn't exist in Jenkins plug-in list.
I've looked for .hpi file for qmakebuilder plug-in, couldn't find it though. So I download the source code from the given repository, tried to compile it as described in Jenkins wiki... but I get list of error indicating java.util.NoSuchElementException.
Any of you guys have used this plug-in? or any other Jenkins plug-in to compile Qt projects with?
First of all, my JAVA_HOME variable was not pointing at the right folder i.e. JDK folder and it was set to JRE which caused the maven to not work properly.
But after fixing that, I was still getting some compilation error.
Finally, I asked Jenkins people and realized for some reason qmakebuilder is not compatible with JDK 7. Therefore, I download the JDK 6 compile the code with that version and it got compiled just fine. I got the hpi file in the target folder.
Plus, the hpi file for this plug-in NOW can be find here.