Skip to content

Instantly share code, notes, and snippets.

View charmzshab's full-sized avatar
🎯
Focusing

Shaban Lukyamuzi charmzshab

🎯
Focusing
View GitHub Profile
@charmzshab
charmzshab / model_cnn_4_layers_simple.py
Created June 21, 2021 14:44 — forked from plusminuschirag/model_cnn_4_layers_simple.py
CNN Urban 8k Classification - Multiple Models
import torch
import torch.nn as nn
import torch.nn.functional as F
from urban_base_model_cnn import UrbanSoundBase
class CNNModel_4Layers(UrbanSoundBase):
"""
Model : 2 CNN Layers, 2NN Layers
Layer Size : 16, 64, _256, _10
@charmzshab
charmzshab / python_heroku.MD
Created June 13, 2020 21:16 — forked from bradtraversy/python_heroku.MD
Python & Postgres Heroku Deployment

Python Heroku Deployment

Steps to create a postgres database and deply a Python app to Heroku

Install guinicorn locally

pipenv install gunicorn
or
pip install gunicorn