Skip to content

Instantly share code, notes, and snippets.

View Sanket758's full-sized avatar
🏠
Working from home

Sanket Gadge Sanket758

🏠
Working from home
View GitHub Profile
@Sanket758
Sanket758 / main.py
Created February 4, 2020 05:29
web.py Tutorial
import web
urls = (
'/(.*)/(.*)', 'hello'
)
render = web.template.render("resources/")
app = web.application(urls, globals())
class hello:
@Sanket758
Sanket758 / PyQtDemo.py
Last active February 8, 2020 15:44
Getting started with PyQt. Here we have created a single page single layout Qt5 app where it displays a label on the window.
'''
First you will need to install qt5 on your system,
for that you will need to do this in you terminal:
sudo apt-get qt5-default
and then,
pip install sip PyQt5
'''
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
@Sanket758
Sanket758 / PY0101EN-1-1-Types.ipynb
Created February 15, 2020 14:43
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sanket758
Sanket758 / PY0101EN-4-1-ReadFile.ipynb
Created February 17, 2020 15:19
Created on Cognitive Class Labs
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.
@Sanket758
Sanket758 / machine-learning-workshop.ipynb
Created April 10, 2020 15:33
Machine Learning Workshop.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sanket758
Sanket758 / univariate-linear-regression.ipynb
Created April 12, 2020 15:55
Univariate Linear Regression.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sanket758
Sanket758 / fashion-mnist-ann.ipynb
Created August 11, 2020 18:39
Fashion-Mnist-ANN.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sanket758
Sanket758 / ml-project-bmp.ipynb
Created August 28, 2020 16:10
ML-Project-BMP_updated.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Sanket758
Sanket758 / ml_assignment2bi.ipynb
Created September 5, 2020 14:10
ML_Assignment2BI.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.