All Projects → robmarkcole → Useful Python

robmarkcole / Useful Python

Licence: mit
Python code and notebooks for reference

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Useful Python

Stylist
Fast artistic style transfer with convolutional neural networks.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Multimodal Short Video Dataset And Baseline Classification Model
500,000 multimodal short video data and baseline models. 50万条多模态短视频数据集和基线模型(TensorFlow2.0)。
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Data scientist nanodegree
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Feedinlib
This repository contains implementations of photovoltaic models to calculate electricity generation from a pv installation based on given solar radiation. Furthermore it contains all necessary pre-calculations.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Kdd2020multimodalities
KDD Cup 2020 Challenges for Modern E-Commerce Platform: Multimodalities Recall
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Pytorchintro
An Absolute Beginners Guide to Machine Learning with PyTorch
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Learning Pandas Second Edition
Learning pandas, Second Edition, published by Packt
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Instapy Research
📄 Research repository for InstaPy
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Memory Efficient Maml
Memory efficient MAML using gradient checkpointing
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Kaggle challenge live
This is the code for "Kaggle Challenge (LIVE)" by Siraj Raval on Youtube
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Soccer xg
A Python package for training and analyzing expected goals (xG) models in soccer.
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Analytics vidhya
Codes related to activities on AV including articles, hackathons and discussions.
Stars: ✭ 1,106 (+1743.33%)
Mutual labels:  jupyter-notebook
Pyeis
PyEIS: A Python-based Electrochemical Impedance Spectroscopy simulator and analyzer
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Intro To Nltk
Code and Notebooks for the Natural Language Processing with Python course.
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Ml Dl Projects
Personal projects using machine learning and deep learning techniques
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Keras model compression
Model Compression Based on Geoffery Hinton's Logit Regression Method in Keras applied to MNIST 16x compression over 0.95 percent accuracy.An Implementation of "Distilling the Knowledge in a Neural Network - Geoffery Hinton et. al"
Stars: ✭ 59 (-1.67%)
Mutual labels:  jupyter-notebook
Fraud detection techniques
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Cats Dogs Cortex Redux
Kaggle Cats & Dogs Redux with Cortex and Resnet50
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Pycon Ua 2018
Talk at PyCon UA 2018 (Kharkov, Ukraine)
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook
Pose Guided Image Generation
Implementation of NIPS 2017 paper "Pose Guided Person Image Generation" in PyTorch. https://arxiv.org/abs/1705.09368
Stars: ✭ 60 (+0%)
Mutual labels:  jupyter-notebook

Useful-python

Python code and Jupyter notebooks for reference.

Run locally with docker

Run a notebook server in docker, mounting in this directory with:

docker run --rm -p 8888:8888 \
                -e JUPYTER_ENABLE_LAB=yes \
                -e AWS_ACCESS_KEY_ID=xyz \
                -e AWS_SECRET_ACCESS_KEY=aaa \
                -v "$PWD":/home/jovyan/work \
                --name jupyter \
                jupyter/scipy-notebook:latest

Then run docker logs jupyter to extract the url & token and place these in your browser (something like http://127.0.0.1:8888/?token=33ebd), or use vscode to connect. When you are finished docker stop jupyter. Alternative environments are listed on https://github.com/jupyter/docker-stacks. I use scipy-notebook when only python is required, or datascience-notebook if R or Julia are required.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].