AmitDiwan has Published 10744 Articles

How can Tensorflow be used to export the model built using Python?

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 07:36:10

159 Views

Tensorflow is a machine learning framework that is provided by Google. It is an open-source framework used in conjunction with Python to implement algorithms, deep learning applications, and much more. It is used in research and for production purposes.It has optimization techniques that help in performing complicated mathematical operations quickly.This ... Read More

How can Tensorflow be used to evaluate both the models on test data using Python?

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 07:34:39

140 Views

Tensorflow is a machine learning framework that is provided by Google. It is an open-source framework used in conjunction with Python to implement algorithms, deep learning applications, and much more. It is used in research and for production purposes.The ‘tensorflow’ package can be installed on Windows using the below line ... Read More

How can Tensorflow be used to compare the linear model and the Convolutional model using Python?

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 07:32:48

163 Views

Tensorflow is a machine learning framework that is provided by Google. It is an open-source framework used in conjunction with Python to implement algorithms, deep learning applications, and much more. It is used in research and for production purposes.The ‘tensorflow’ package can be installed on Windows using the below line ... Read More

How can Tensorflow be used to compile and fit the model using Python?

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 07:30:45

178 Views

Tensorflow is a machine learning framework that is provided by Google. It is an open-source framework used in conjunction with Python to implement algorithms, deep learning applications and much more. It is used in research and for production purposes.It has optimization techniques that help in performing complicated mathematical operations quickly.This ... Read More

How can Tensorflow be used to build a one dimensional convolutional network using Python?

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 07:29:24

396 Views

Tensorflow is a machine learning framework that is provided by Google. It is an open-source framework used in conjunction with Python to implement algorithms, deep learning applications, and much more. It is used in research and for production purposes.It has optimization techniques that help in performing complicated mathematical operations quickly.This ... Read More

Finding smallest element in a sorted array which is rotated in JavaScript

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 06:33:50

142 Views

We are required to write a JavaScript function that takes in an array of integers as the only argument.The array is first sorted and then rotated by any arbitrary number of elements. Our function should find the smallest element in the array and return that element.The only condition is that ... Read More

Subarray with the greatest product in JavaScript

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 06:31:28

128 Views

We are required to write a JavaScript function that takes in an array of integers (positive and negative) as the first and the only argument. The function should find out and return the product of subarray where its maximum.For example −If the input array is −const arr = [4, -5, ... Read More

Length of the longest possible consecutive sequence of numbers in JavaScript

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 06:29:25

511 Views

We are required to write a JavaScript function that takes in an array of integers as the first and the only argument.The function should find and return the length of the longest consecutive increasing sequence that exists in the array (contiguous or non-contiguous).For example −If the input array is −const ... Read More

Finding all possible subsets of an array in JavaScript

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 06:26:39

2K+ Views

We are required to write a JavaScript function that takes in an array of literals as the first and the only argument.The function should construct and return an array of all possible subarrays that can be formed from the original array.For example −If the input array is −const arr = ... Read More

Finding words in a matrix in JavaScript

AmitDiwan

AmitDiwan

Updated on 19-Jan-2021 06:24:02

478 Views

We are required to write a JavaScript function that takes in an array of arrays of characters as the first argument and a string as the second argument.The function should find out whether there exist characters in the matrix, non-repeating combination of which yields the string provided to the function ... Read More

Advertisements