Skip to content

Instantly share code, notes, and snippets.

View MBoustani's full-sized avatar
🚀

Mazi Boustani MBoustani

🚀
View GitHub Profile
@MBoustani
MBoustani / NumPy is all you need.ipynb
Created April 26, 2022 20:50
Comprehensive list of NumPy functions with example code
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MBoustani
MBoustani / Brain_Signal_Processing_MNE_Sklearn.ipynb
Created April 13, 2022 03:02
Basics of brain signal processing using MNE and Sklearn
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MBoustani
MBoustani / Spinal Column Segmentation.ipynb
Last active December 24, 2021 22:28
Spinal Column Segmentation using PyTorch
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MBoustani
MBoustani / client.py
Last active July 28, 2017 17:56
RPC communication python calls using Zerorpc (MNIST sklearn example)
import matplotlib.pyplot as plt
from execution import Execution
e = Execution()
#digits = datasets.load_digits()
digits = e.execute('datasets.load_digits')
n_samples = len(digits.images)
@MBoustani
MBoustani / lstm_text_generator.py
Last active April 2, 2022 20:14
Simple Tensorflow RNN LSTM text generator
import tensorflow as tf
import numpy as np
#set hyperparameters
max_len = 40
step = 2
num_units = 128
learning_rate = 0.001
batch_size = 200
epoch = 60