Sample code from my blog posts on Medium and my personal website.
This is a repository of code samples from my blogposts. I’m writing on Medium at the moment. You can find me here.
Link to the article on Medium | Sample Code | Publish Date | Topics |
---|---|---|---|
Code | January, 2023 | jupyter-notebook, pandas, python | |
Improving the performance of NumPy code | Code | October, 2022 | jupyter-notebook, numpy, pandas, matplotlib, numba |
Dissecting the Birthday Paradox | Code | April, 2022 | jupyter-notebook, statistics, pandas, matplotlib |
How do Chatbots Understand? | Code | February, 2022 | rasa, python, chatbot, nlu |
Handling Chatbot Failure Gracefully | Code | December, 2021 | rasa, python, chatbot, nlu |
Evaluating Multi-label Classifiers | Code | November, 2021 | classification, sklearn, ml, metrics |
Rasa Chatbot v2 (not a post) | Code | October, 2021 | rasa, python, chatbot, nlu |
Building a Chatbot with Rasa | Code | September, 2021 | rasa, python, chatbot, nlu |
How Imports Work in Python | Code | June, 2021 | python, imports |
Python: Decorators in OOP | Code | January, 2021 | python, oop, decorators |
How Neural Networks Solve the XOR Problem | Code | November, 2020 | python, jupyter-notebook, matplotlib |
Understanding Dynamic Programming | Code | October, 2020 | python, algorithms, dynamic programming |
Understanding Maximum Likelihood Estimation | TBA | August, 2020 | statistics |
Visualizing the Defective Chessboard Problem | Code | Jan, 2020 | algorithms |
Checkout star-history.com to get a star plot like the one above.
Also, if you found this repository useful, please do leave a star!
https://github.com/Polaris000/BlogCode.git
conda
is a reliable way to go about it. Install conda from here.
$ conda create --name <env_name> python=3.8.10
After the setup is complete, activate the env.
$ conda activate <env_name>
The packages required to run these code samples are mainly of two kinds:
If you want to install both, use requirements/requirements.txt
in your env
(env)$ pip install -r requirements/requirements.txt
requirements/rasa_requirements.txt
in your env
(env)$ pip install -r requirements/rasa_requirements.txt
requirements/non_rasa_requirements.txt
in your env
(env)$ pip install -r requirements/non_rasa_requirements.txt
$ pip install pip==20.2
$ pip install install rasa-x==0.38.1 --extra-index-url https://pypi.rasa.com/simple