Skip to content

Instantly share code, notes, and snippets.

View rp4ri's full-sized avatar
🧉
Working from home

Rodrigo Pari Susaño rp4ri

🧉
Working from home
View GitHub Profile
@rp4ri
rp4ri / ManimUsefulCode.md
Last active March 12, 2023 06:45
Manim Useful code snippets

Manim

0. Command line arguments

manimgl [file] [scene] [flags]

1. Simple scenes

Circle

@rp4ri
rp4ri / AudioProcessingUsefulCode.md
Last active March 12, 2023 06:43
Audio Processing Useful code snippets

Audio Processing useful code snippets

1. Librosa

Installation

pip install librosa

Importing and loading audio

@rp4ri
rp4ri / ImageProcessingUsefulCode.md
Last active March 12, 2023 06:42
Image Processing Useful code snippets

Image Processing useful code snippets

1. Pillow

Installation

pip install Pillow

Open an image

@rp4ri
rp4ri / NLPUsefulCode.md
Last active March 12, 2023 06:45
NLP useful code snippets

NLP useful code snippets

1. NLTK

Download the necessary data for NLTK

import nltk
nltk.download('punkt')
nltk.download('stopwords')
nltk.download('averaged_perceptron_tagger')
@rp4ri
rp4ri / NeuralNetworks.md
Last active March 12, 2023 06:56
Neural Networks

Popular and simple neural network architectures

Here are a few popular and simple neural network architectures:

Perceptron:

perceptron.py

It is a simple linear classifier that can be used for binary classification problems.