Data structure and algorithm

How data structure and algorithm play an important role in field of artificial intelligence specially in deep learning ?
Do we need to master it to create our own algorithm for a specific real world problem statement.

Hi @warrior,

It is mostly useful to understand what is the least computationally expensive way of treating data. Some datasets are massive and it is important to be able to solve some problem in O(n*log (n)) rather than in O(n^2).
I would not say you need to “master” it though.

Hope it helps!

Charles

1 Like

Thank You So Much nn.Charles for your explanation !!!