Activation of neurons Welcome back to the discussion on deep learning. We could have a basic idea of what is deep learning in the previous story. You can find it here. Now we know that deep learning is a process that a large neural network can learn to do do something specific. We will focus on […]
admin
What is deep learning? Deep learning is a booming topic these days. Everyone talks about it. Everyone tries to apply it to various problems. But what is it? To understand Deep learning, we will need to take a look back at artificial intelligence. Artificial intelligence Artificial intelligence can be introduced as an attempt to build [...]
admin
What the heck! https://github.com/vzztalks/javascrypt-get-started You might have seen such kind of expressions in various JavaScript sources. The basic idea behind all of these is Modularization. Wait! What? Modularization Modularization is simply making our source code split into logical units of independent, reusable code which become [...]
admin
__how_can_we_use_generators__.py https://github.com/vishwaefor/handy-python-features Last time we had a look at how decorators work in Python. You can find the previous discussion from the following links. Handy Python Features — Part 01 Handy Python Features — Part 02 It is time for us to explore another handy feature in Python. We will [...]
admin
__exploring_more_on_decorators__.py https://github.com/vzztalks/handy-python-features I assume that part 01 of this series gave you a better understanding of how decorators work and where to use them. We are ready to explore more on decorators in this discussion. Function Metadata There are few metadata maintained withing a function for [...]
admin
__how_can_we_use_decorators__.py https://github.com/vzztalks/handy-python-features Python is a powerful language and there are many handy built-in features. Decorators are one of them. You might have scene decorators in python sources as in the following example. Decorators are functions that wrap functions and change their behavior. [...]
admin