
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
240 Views
We are required to write a JavaScript function that takes in an array of numbers as the first and the only argument.The function should then construct and return a new array based on the original array.The new array should contain all those elements from the original array whose value was ... Read More

AmitDiwan
649 Views
We are required to write a JavaScript function that takes in a string as the first and the only argument.The task of our function is to check whether any rearrangement in the characters of the string results into a palindrome string or not. If yes, then our function should return ... Read More

AmitDiwan
592 Views
We are required to write a JavaScript function that takes in a string str as the first argument and an array of strings, arr as the second argument. We need to add a closed pair of paragraph tag and to wrap the substrings in str that exist in ... Read More

AmitDiwan
206 Views
Tensorflow can be used to create a model that tracks internal layers by creating a sequential model and using this model to call ‘tf.zeros’ method.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?A neural network that contains at least one layer is known as ... Read More

AmitDiwan
227 Views
Tensorflow can be used to compose layers by defining a class that inherits from ‘ResnetIdentityBlock’. This is used to define a block which can be used to compose the layers.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?A neural network that contains at least ... Read More

AmitDiwan
136 Views
Tensorflow can be used to call the layer, and get the variables present in the layer, by first defining the layer, and using ‘layer.kernel’, and ‘layer.bias’ to access these variables. The ‘tf.zeros’ is used, and the layer can be iterated over and called.Read More: What is TensorFlow and how Keras ... Read More

AmitDiwan
245 Views
Tensorflow can be used to implement custom layers by creating a class and defining a function to build the layers, and defining another function to call the matrix multiplication by passing the input to it.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?A neural ... Read More

AmitDiwan
499 Views
Tensorflow can be used to get the variables in a layer by displaying the variables in the layer using ‘layer.Variables’, and then using ‘layer.kernel’, and ‘layer.bias’ to access these variables.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?A neural network that contains at least ... Read More

AmitDiwan
107 Views
Tensorflow can be used to construct an object for customized layers by first creating the required layers, and then using this layer on tf.zeros method.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?A neural network that contains at least one layer is known as ... Read More

AmitDiwan
153 Views
Tensorflow can be used to confirm that the saved model can be reloaded by using the ‘load_model’ and using the ‘predict’ method. The reloaded model can be used predict the data.Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?A neural network that contains at ... Read More