Jump to content

adisharma

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by adisharma

  1. Hello Everyone, I am in the learning face of Artificial Intelligence and looking for an online book. I have checked on google source but there are lots of books and I am confused between James V Stone and Vinod Chandra Author books whose names are Artificial Intelligence Engines: A Tutorial Introduction to the Mathematics of Deep Learning and Artificial Intelligence and Machine Learning 1st Edition. Can anyone tell me, Is the right choice for the beginner level?
  2. Hello All, I am working on AI project and I want to know the source code of Next Word Prediction Project. Basically, It’s never easy to write rapidly and without making spelling mistakes. It is not difficult to type correctly and quickly while using a keyboard on a desktop computer, but typing on small devices such as mobile phones is a different story, and it can be frustrating for many of us. With the next word prediction project, you can improve your experience of typing on small devices only by predicting the next word in a sentence fragment and I have taken this reference from a commercial website. Can anyone provide me the source code of the Next Word Prediction Project?
  3. Hello Everyone, Im working with Quantrix. A java based software. The scripting language is Groovy and i want to build a customized function, a simple linear regression. Im not a java developer so I truly just know the fundamentals. My code takes a gander right now like this. I think the issue is some place in the syntax, which im not that familiar working with. double simple_regression(double dependend_values, double independend_values, double x_test) { slope = double slope(dependend_values, independend_values) intercept = double intercept(dependend_values, independend_values) return intercept + slope * x_test } Here is another try, done in a java online compiler public class simple_regression { static void main (String [] args) { int x=10; int y=25; int x_test=20; double predict; SimpleRegression sreg = SimpleRegression(); sreg.addData(); sreg.addData(x, y); predict = sreg.predict(x_test); System.out.println(predict); } } and this is the error i get /simple_regression.java:7: error: cannot find symbol SimpleRegression sreg = SimpleRegression(); ^ symbol: class SimpleRegression location: class simple_regression /simple_regression.java:7: error: cannot find symbol SimpleRegression sreg = SimpleRegression(); ^ symbol: method SimpleRegression() location: class simple_regression 2 errors
  4. Yes you are right! I am from india and I have basic knowledge of c++ programming and want to know the fresher salary in service based company and product based company.
  5. Hello All, I have completed my b.tech in 2020 with computer science and after that i have done the certification for c++ programming. I want to know the average salary of software engineer? I have checked link removed and found the information which is 0.8M per year in India. Can anyone suggestion me, Is it right?
  6. Hello Everyone, I am final year B.tech student and I am looking for some latest computer science projects for my major project. I am shortlisted 2 project which is Basic Hospital Management System and Library Management System. Can anyone provide me some reference where i can get the help how to build it and how many days it takes?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.