AmitDiwan has Published 10744 Articles

How can TensorFlow be used to make predictions for Fashion MNIST dataset in Python?

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 12:30:22

166 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 ... Read More

How can TensorFlow be used to train the model for Fashion MNIST dataset in Python?

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 12:28:46

152 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 build the model for Fashion MNIST dataset in Python?

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 12:27:40

218 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 preprocess Fashion MNIST data in Python?

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 12:25:02

242 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 download and explore the Fashion MNIST dataset using Python?

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 12:23:37

230 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 create a plot that visualizes training and validation accuracy in the trained IMDB dataset in Python?

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 12:21:39

174 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 create a plot that visualizes accuracy and loss with respect to time in IMDB dataset in Python?

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 12:20:29

98 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 ‘IMDB’ dataset contains reviews of over 50 thousand movies. This dataset ... Read More

Large to Small Sorting Algorithm of already sorted array in JavaScript

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 07:03:28

314 Views

Suppose we have an array of integers that is already sorted in the increasing order. We are required to write a JavaScript function that without using the inbuilt Array.prototype.sort() method sorts the array like the following −First number should be the maximumSecond number should be the minimumThird number should be ... Read More

Counting substrings of a string that contains only one distinct letter in JavaScript

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 07:01:12

206 Views

We are required to write a JavaScript function that takes in a string as the only argument. The task of our function is to count all the contiguous substrings in the input string that contains exactly one distinct letter.The function should then return the count of all such substrings.For example ... Read More

Difference between product and sum of digits of a number in JavaScript

AmitDiwan

AmitDiwan

Updated on 20-Jan-2021 06:59:11

282 Views

We are required to write a JavaScript function that takes in an positive integer as the only argument.The function should first count the sum of the digits of the number and then their product. Finally, the function should return the absolute difference of the product and the sum.For example −If ... Read More

Advertisements