photo

Abhijit Bhattacharjee

Last seen: 22 días hace Con actividad desde 2014

Followers: 0   Following: 0

Mensaje

Abhijit Bhattacharjee is a Principal Application Engineer based in Los Angeles who specializes in the areas of deep learning, artificial intelligence, machine learning, and computer vision. He holds a MSEE degree from the University of Southern California and works with clients in all industries, including consumer devices, semiconductors, government, and biopharmaceuticals. Prior to MathWorks, Abhijit was a researcher at USC Information Sciences Institute working in programs funded by NASA and DARPA.

Programming Languages:
Python, C++, C, Java, PHP, Javascript, MATLAB, SQL, HTML, CSS, Shell
Spoken Languages:
Bengali, English

Estadística

All
MATLAB Answers

0 Preguntas
10 Respuestas

Cody

0 Problemas
7 Soluciones

CLASIFICACIÓN
2.816
of 300.364

REPUTACIÓN
22

CONTRIBUCIONES
0 Preguntas
10 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
3

CLASIFICACIÓN
 of 20.934

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
46.890
of 168.407

CONTRIBUCIONES
0 Problemas
7 Soluciones

PUNTUACIÓN
80

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Knowledgeable Level 2
  • Explorer
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
How can I normalize data between 0 and 1 ? I want to use logsig...
As of MATLAB R2018a, there is an easy one-liner command that can do this for you. It's called NORMALIZE. Here is an example, wh...

más de 3 años hace | 2

Respondida
How to save training progress plot generated by "trainNetwork"?
Have a look at a previous answer to a similar question.

más de 3 años hace | 0

Respondida
How do I access individual weight matrices in a custom training loop?
I assume by custom training loops, you are referring to custom training loops in the Deep Learning Toolbox. If so, here is a goo...

más de 3 años hace | 0

Respondida
Hi all, how to create image datasets. I need them to train neural networks. I have about 15 to 20 images and I need to turn these images into an image dataset. Please.
This is easy to do in MATLAB! You can put all your images into a folder and use the imageDatastore command. Assuming the folder...

más de 3 años hace | 0

| aceptada

Respondida
Best GPU for Deep Learning Training
A very good (and up-to-date) reference article on this topic can be found here: Tim Dettmers Which GPU for Deep Learning. Becau...

más de 3 años hace | 0

Respondida
How to close neural network training dialog in 2022a
Referring to this question, this can be done using the following command: delete(findall(0)) This is because the ‘HandleVisibi...

más de 3 años hace | 1

| aceptada

Respondida
How to align multiple datasets but data are not totally identical
Without seeing a bit more detailed of an example, it's not easy to recommend the best path forward. But you could consider creat...

más de 3 años hace | 0

Respondida
What is the value of K in KNN in classification learner app?
K in KNN is the number of nearest neighbors. This is a user-supplied parameter. If you open the Classification Learner App and l...

más de 3 años hace | 0

| aceptada

Respondida
How to view the output of each layer in convolutional neural network using matlab?
This is straightforward to do with the activations command in Deep Learning Toolbox. You will need a CNN and a test input, like ...

más de 3 años hace | 0

Resuelto


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

más de 11 años hace

Resuelto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

más de 11 años hace

Resuelto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

más de 11 años hace

Resuelto


Add two numbers
Given a and b, return the sum a+b in c.

más de 11 años hace

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

más de 11 años hace

Resuelto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

más de 11 años hace

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

más de 11 años hace

Respondida
can't find 'winvideo' adaptor in matlab 2014a
They have to be (separately) installed now, using the support package installer (which is included with MATLAB). Please see here...

más de 11 años hace | 0

| aceptada