All Projects → chrisalbon → Notes

chrisalbon / Notes

Licence: other
Notes On Using Data Science & Artificial Intelligence To Fight For Something That Matters.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Notes

120 Ds Interview Questions
My Answer to 120 Data Science Interview Questions
Stars: ✭ 304 (-57.18%)
Mutual labels:  jupyter-notebook, statistics
Python For Probability Statistics And Machine Learning
Jupyter Notebooks for Springer book "Python for Probability, Statistics, and Machine Learning"
Stars: ✭ 481 (-32.25%)
Mutual labels:  jupyter-notebook, statistics
Probability
Probabilistic reasoning and statistical analysis in TensorFlow
Stars: ✭ 3,550 (+400%)
Mutual labels:  jupyter-notebook, statistics
Notebooks Statistics And Machinelearning
Jupyter Notebooks from the old UnsupervisedLearning.com (RIP) machine learning and statistics blog
Stars: ✭ 270 (-61.97%)
Mutual labels:  jupyter-notebook, statistics
Probabilistic Programming And Bayesian Methods For Hackers
aka "Bayesian Methods for Hackers": An introduction to Bayesian methods + probabilistic programming with a computation/understanding-first, mathematics-second point of view. All in pure Python ;)
Stars: ✭ 23,912 (+3267.89%)
Mutual labels:  jupyter-notebook, statistics
Data Science Learning
Repository of code and resources related to different data science and machine learning topics. For learning, practice and teaching purposes.
Stars: ✭ 273 (-61.55%)
Mutual labels:  jupyter-notebook, statistics
Edward2
A simple probabilistic programming language.
Stars: ✭ 419 (-40.99%)
Mutual labels:  jupyter-notebook, statistics
Datascienceprojects
The code repository for projects and tutorials in R and Python that covers a variety of topics in data visualization, statistics sports analytics and general application of probability theory.
Stars: ✭ 223 (-68.59%)
Mutual labels:  jupyter-notebook, statistics
Cvpr 2019 Paper Statistics
Statistics and Visualization of acceptance rate, main keyword of CVPR 2019 accepted papers for the main Computer Vision conference (CVPR)
Stars: ✭ 527 (-25.77%)
Mutual labels:  jupyter-notebook, statistics
Edward
A probabilistic programming language in TensorFlow. Deep generative models, variational inference.
Stars: ✭ 4,674 (+558.31%)
Mutual labels:  jupyter-notebook, statistics
Facet
Human-explainable AI.
Stars: ✭ 269 (-62.11%)
Mutual labels:  jupyter-notebook, statistics
Cracking The Data Science Interview
A Collection of Cheatsheets, Books, Questions, and Portfolio For DS/ML Interview Prep
Stars: ✭ 672 (-5.35%)
Mutual labels:  jupyter-notebook, statistics
The Elements Of Statistical Learning
My notes and codes (jupyter notebooks) for the "The Elements of Statistical Learning" by Trevor Hastie, Robert Tibshirani and Jerome Friedman
Stars: ✭ 260 (-63.38%)
Mutual labels:  jupyter-notebook, statistics
Basic Mathematics For Machine Learning
The motive behind Creating this repo is to feel the fear of mathematics and do what ever you want to do in Machine Learning , Deep Learning and other fields of AI
Stars: ✭ 300 (-57.75%)
Mutual labels:  jupyter-notebook, statistics
Kdepy
Kernel Density Estimation in Python
Stars: ✭ 244 (-65.63%)
Mutual labels:  jupyter-notebook, statistics
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (-46.34%)
Mutual labels:  jupyter-notebook, statistics
Imodels
Interpretable ML package 🔍 for concise, transparent, and accurate predictive modeling (sklearn-compatible).
Stars: ✭ 194 (-72.68%)
Mutual labels:  jupyter-notebook, statistics
Geostatspy
GeostatsPy Python package for spatial data analytics and geostatistics. Mostly a reimplementation of GSLIB, Geostatistical Library (Deutsch and Journel, 1992) in Python. Geostatistics in a Python package. I hope this resources is helpful, Prof. Michael Pyrcz
Stars: ✭ 200 (-71.83%)
Mutual labels:  jupyter-notebook, statistics
Geomstats
Computations and statistics on manifolds with geometric structures.
Stars: ✭ 498 (-29.86%)
Mutual labels:  jupyter-notebook, statistics
Machine learning tutorials
Code, exercises and tutorials of my personal blog ! 📝
Stars: ✭ 601 (-15.35%)
Mutual labels:  jupyter-notebook, statistics

notes

This is Chris Albon's collection of personal notes on coding, statistics, machine learning, and technical management. These notes are posted publically at https://ChrisAlbon.com. What is in this repo will not be useful to other folks.

Overview

The master record of a note is either a Jupyter Notebook or a Markdown file. These files are in the content folder. The website HTML is contained in the docs folder.

Full Deploy Procedure

  1. Run make.ipynb to convert the Jupyter Notebooks and associated images into Markdown files.
  2. Run hugo to convert the Markdown files into HTML pages.
  3. Run git add -A
  4. Run git commit -m "commit message"
  5. Run git push

Markdown Head Metadata Example

---
title: "Give Table An Alias"
author: "Chris Albon"
date: 2019-01-28T00:00:00-07:00
description: "Give a table an alias in Snowflake using SQL."
type: technical_note
draft: false
---

Useful Aliases

To reduce the barriers to publishing a new note as much as possible, here are some useful aliases for your .bash_profile:

# Notes Project

# Go to Notes folder
alias nn='cd /Users/chrisalbon/dropbox/cra/projects/notes'

# Go to Notes folder and open Jupyter Notebook
alias njn='cd /Users/chrisalbon/dropbox/cra/projects/notes && jupyter notebook'

# Launch in Hugo server of Notes site
alias nhs='cd /Users/chrisalbon/dropbox/cra/projects/notes && hugo server'

# Publish a new note
alias nnn='cd /Users/chrisalbon/dropbox/cra/projects/notes && git pull && hugo && git add -A && git commit -m "made changes" && gp && git push'

Note that when you run nnn you might be prompted for an application password. You can get that / generate that from GitHub.com in account settings.

To Do

  • Fix Github issues
  • Hunt for minor errors
  • Refactor make.ipynb to make it .py and cleaner
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].