All Projects → ginevracoal → statistical-machine-learning

ginevracoal / statistical-machine-learning

Licence: other
Probabilistic Machine Learning course lab @Units

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to statistical-machine-learning

Markov-Random-Field-Project
This project has two parts. In part one, we use markov random field to denoise an image. In Part two, we use similar model for image segmentation.
Stars: ✭ 97 (+410.53%)
Mutual labels:  probabilistic-graphical-models
CGMM
Official Repository of "Contextual Graph Markov Model" (ICML 2018 - JMLR 2020)
Stars: ✭ 35 (+84.21%)
Mutual labels:  probabilistic-graphical-models
flowtorch-old
Separating Normalizing Flows code from Pyro and improving API
Stars: ✭ 36 (+89.47%)
Mutual labels:  probabilistic-graphical-models
Pgmpy
Python Library for learning (Structure and Parameter) and inference (Probabilistic and Causal) in Bayesian Networks.
Stars: ✭ 1,942 (+10121.05%)
Mutual labels:  probabilistic-graphical-models
Deep Learning Drizzle
Drench yourself in Deep Learning, Reinforcement Learning, Machine Learning, Computer Vision, and NLP by learning from these exciting lectures!!
Stars: ✭ 9,717 (+51042.11%)
Mutual labels:  probabilistic-graphical-models
Librec
LibRec: A Leading Java Library for Recommender Systems, see
Stars: ✭ 3,045 (+15926.32%)
Mutual labels:  probabilistic-graphical-models
Pomegranate
Fast, flexible and easy to use probabilistic modelling in Python.
Stars: ✭ 2,789 (+14578.95%)
Mutual labels:  probabilistic-graphical-models
markovian
🎲 A Kotlin DSL for probabilistic programming.
Stars: ✭ 13 (-31.58%)
Mutual labels:  probabilistic-graphical-models
prosper
A Python Library for Probabilistic Sparse Coding with Non-Standard Priors and Superpositions
Stars: ✭ 17 (-10.53%)
Mutual labels:  probabilistic-graphical-models
MvMM-RegNet
Code for paper: MvMM-RegNet: A new image registration framework based on multivariate mixture model and neural network estimation
Stars: ✭ 22 (+15.79%)
Mutual labels:  probabilistic-graphical-models
ReactiveMP.jl
Julia package for automatic Bayesian inference on a factor graph with reactive message passing
Stars: ✭ 58 (+205.26%)
Mutual labels:  probabilistic-graphical-models
bnp
Bayesian nonparametric models for python
Stars: ✭ 17 (-10.53%)
Mutual labels:  probabilistic-graphical-models
blangSDK
Blang's software development kit
Stars: ✭ 21 (+10.53%)
Mutual labels:  probabilistic-graphical-models

Probabilistic/Statistical Machine Learning

Please use the dedicated forum on moodle for questions on theory and exercises.

If you notice some errors in the notebooks/homeworks contact me at: [email protected] (name=ginevra.carbone)

Utils

Linux Setup

Python version: 3.6.9

Download, clone or fork (your choice) this repository in a directory PATH_TO_DIR/.

Create a virtual environment using python3 (commands are provided for Debian-like GNU/Linux distributions)

sudo apt install -y python3-venv
cd PATH_TO_DIR/statistical-machine-learning/
python3.6 -m venv venv

Now you should see PATH_TO_DIR/statistical-machine-learning/venv/ folder. Activate the enviroment and install the requirements:

source venv/bin/activate
pip install -r basic_requirements.txt

Register the just-installed virtual environment for use with Jupyter:

python3 -m ipykernel install --user --name statistical-machine-learning --display-name "Python (SML virtualenv)"

Open your notebooks using jupyter-notebook (or jupyter-lab):

python3 -m jupyter notebook

To deactivate the environment use source deactivate command.

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].