Category: Tutorials

Data Science, Tutorials

How to install JupyterLab and Jupyter Notebook

For years, Jupyter Notebook, with its simple-to-use, streamlined, and document-centric interface has been the go-to web application for creating and sharing scientific computational documents. It supports a wide range of programming languages, and it allows users to produce rich and interactive outputs in a range of formats. In turn, JupyterLab is the next generation of […]

Tutorials

Using Python to Solve Wordle

Wordle is a fun puzzle to solve. It’s a word square where you have to fill in the crossword-like grid with words that fit into it. The best way to start is by looking at the grid, thinking about what letters are already there, and finding words that match those letters. You’ll find that some of […]

Python Basics, Tutorials

How to perform web scraping with Python!

   Guide to Web Scraping with Python In this blog post we’ll get you started with web scraping and Python. Before we begin, here are some important rules to follow and understand: Always be respectful and try to get premission to scrape, do not bombard a website with scraping requests, otherwise your IP address may […]

Deep Learning, Natural Language Processing, Tensorflow, Tutorials

Using Deep Learning and Tensorflow to generate new song lyrics in the style of Weezer

    Welcome to this blog post on Natural Language Processing, specifically generating new text! In this blog post we’ll explore how to gather a bunch of Weezer lyrics and train a Recurrent Neural Network (RNN) to generate new lyrics character by character. Let’s dive in! Table of Contents: Gathering the Data Text Processing Creating […]