AmitDiwan has Published 10744 Articles

Knowledge based agents in AI

AmitDiwan

AmitDiwan

Updated on 14-Oct-2022 11:35:51

6K+ Views

Knowledge-based agents represent searchable knowledge that can be reasoned. These agents maintain an internal state of knowledge, take decisions regarding it, update the data, and perform actions on this data based on the decision. Basically, they are intelligent and respond to stimuli like how humans react to different situations. Examples − ... Read More

Introduction to TensorFlow Lite

AmitDiwan

AmitDiwan

Updated on 14-Oct-2022 09:02:44

500 Views

TensorFlow Lite is a mobile library designed to deploy models on mobile, microcontrollers and edge devices. It comes with tools that enable on-device machine learning on mobile devices using 5 aspects − latency, privacy, connectivity, size, and power consumption. It provides support on Android, iOS, embedded Linux and microcontrollers. Supports ... Read More

Difference between TensorFlow and Caffe

AmitDiwan

AmitDiwan

Updated on 14-Oct-2022 08:50:14

781 Views

TensorFlow TensorFlow is an open-source end-to-end platform to build machine learning applications. It was developed by researchers and developers at Google Brain. Let us now see the features of TensorFlow − Build and Train models easily − TensorFlow offers multiple levels of abstraction to make it quick for you to ... Read More

Impact and Example of Artificial Intelligence

AmitDiwan

AmitDiwan

Updated on 14-Oct-2022 08:40:47

582 Views

Artificial intelligence deals with programming computers to detect patterns in new data, make decisions based on user input, and give output based on the user input. All the rules are not explicitly defined and it is expected by the developer that the machine learns these rules by experience, using a ... Read More

Difference between TensorFlow and Keras

AmitDiwan

AmitDiwan

Updated on 14-Oct-2022 08:32:43

502 Views

In this article, you will understand the significant differences between Tensorflow and Keras libraries.TensorFlowTensorFlow is an open-source end-to-end platform to build machine learning applications. It was developed by researchers and developers at Google Brain. Let us now see the features of TensorFlow − Build and Train models easily − TensorFlow ... Read More

Difference between TensorFlow and Theano

AmitDiwan

AmitDiwan

Updated on 14-Oct-2022 08:17:42

400 Views

In this article, you will understand the significant differences between Tensorflow and Theano libraries.TensorFlowIt is an open-source end-to-end platform to build machine learning applications and was developed by researchers and developers at Google Brain. Let us now see the features of TensorFlow − Ecosystem of powerful add-on libraries − ... Read More

Kotlin Program to Generate Multiplication Table

AmitDiwan

AmitDiwan

Updated on 13-Oct-2022 13:39:41

987 Views

In this article, we will understand how to print a multiplication table. Multiplication table is created by iterating the required input 10 times using a for loop and multiplying the input value with numbers from 1 to 10 in each iteration. Below is a demonstration of the same − Suppose ... Read More

Kotlin Program to Round a Number to n Decimal Places

AmitDiwan

AmitDiwan

Updated on 13-Oct-2022 13:38:07

2K+ Views

In this article, we will understand how to round a number to n decimal places. Rounding of decimal values are done using the ceil() or floor() functions. Below is a demonstration of the same − Suppose our input is Input : 3.1415 The desired output would be − Output ... Read More

Kotlin Program to calculate Simple Interest and Compound Interest

AmitDiwan

AmitDiwan

Updated on 13-Oct-2022 13:33:15

905 Views

In this article, we will input the Principal Amount, Rate and Time (Years) from the user to find the Simple Interest and Compound Interest − Simple Interest − The percentage interest on total principal amount. Returns are less compared to Compound Interest. Compound Interest − The percentage interest charged ... Read More

Kotlin Program to Sort Elements in Lexicographical Order (Dictionary Order)

AmitDiwan

AmitDiwan

Updated on 13-Oct-2022 13:27:29

410 Views

In this article, we will understand how to sort the elements of an array in Lexicographical order in Kotlin. The lexicographical order is a generalization of the alphabetical order of the dictionaries to sequences. Below is a demonstration of the same − Suppose our input is − Alpha Beta Gamma ... Read More

Advertisements