1 day agoArgMax and SoftMaxUnderstanding ArgMax and SoftMax in Minutes Hello Everyone, Today I came up with a new blog on one of the easy stuck points for the beginner in the field of neural networks. This blog will be small and informative. Feel free to ask any question regarding the blog and do…Machine Learning3 min readMachine Learning3 min read
5 days agoRecurrent Neural Network (RNN)Deep Dive into RNN Neurons with Recurrence If you will just see one mode of these then you know that it takes input and do some work over it and then give output. Here x & y both are real numbers. The above image simply depicts the perception and the green block is…Recurrent Neural Network7 min readRecurrent Neural Network7 min read
Mar 22Activation Functions in Neural NetworksGetting into Activation Functions Activation functions are one of the most important unit in the neural networks. …Machine Learning6 min readMachine Learning6 min read
Mar 16[Paper Review] Locating and Editing Factual Associations in GPPaper Summary/Reading Introduction Reason people are mainly wondering what actually happening in between the model comes from two side of spectrum. One comes from scientific/interpretable side which mainly thinks where things are & what models are doing to achieve them. …Machine Learning7 min readMachine Learning7 min read
Mar 14[Paper Review] Swin Transformer: Hierarchical Vision Transformer using Shifted WindowsPaper Summary on Swin Transformer Abstract This paper presents a new vision transformer called Swin transformers, capable for serving as a general purpose backbone for computer vision. Challenges for adapting transformers from languages to vision arises from the differences between the two domain. …Machine Learning7 min readMachine Learning7 min read
Mar 9Getting into Component of AngularDeep Understanding of Components in Angular The anatomy of the Component is very straightforward, it has component class and template. They are wired together using Metadata which is mainly very simple in most of the cases. Outside of the structure piece we have communication channels which basically happens through Event…Software Development5 min readSoftware Development5 min read
Mar 6Components, Metadata and Data BindingGetting in depth of Angular Components Components are the atomic building block of Angular applications. Inside the components there are two types of separate things that are happening conceptually. Those two things are template and class. Component Classes Components are just ES6 classes. Properties and method of the component class are available to…Angular3 min readAngular3 min read
Mar 5Modules and RoutersInformation on Modules and Routers In TS each file can be considered as module. For making each file module we have to add export keyword before class to make it accessible outside of the file. In TS we divide the program into multiple files, in each files we export one…Angular4 min readAngular4 min read
Mar 3Introduction to TypeScriptHands-On Introduction on TypeScript TypeScript is not a new language. It is a super sort of JS with some additional features. Any valid JS code is valid TS code. Reason behind TypeScript Strong Typing: Like any other language as Java, C# there is not compulsion for typing a variable in…Typescript5 min readTypescript5 min read
Mar 1Introduction to AngularBasics Information regarding Angular What is Angular? Angular is a JS Framework which allows us to create a reactive Single Page Applications (SPAs). It is a framework that we use to build client application in HTML, CSS, and JavaScript/ TypeScript (it simply compiles to JS). TypeScript is more common in the Angular community…Angular4 min readAngular4 min read