Skip to content

Commit

Permalink
Merge pull request #33 from ctgk/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
ctgk authored Oct 3, 2021
2 parents 47d9830 + ca71eb4 commit 9e7fad7
Show file tree
Hide file tree
Showing 288 changed files with 1,084 additions and 63,491 deletions.
27 changes: 27 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: local
hooks:
- id: assert_ascii
language: system
name: Check file encoding
entry: bash -c 'for file in "$@"; do file --mime-encoding $file | grep -q "ascii\|binary"; if [ $? != 0 ]; then echo $file; exit 1; fi; done' --
types: [text]
- id: flake8
name: Check Python format
entry: flake8 --count --show-source --statistics
language: system
types: [python]
- id: unittest
name: Run Python unittests
language: system
entry: python setup.py test
pass_filenames: false
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,3 @@ Python codes implementing algorithms described in Bishop's book "Pattern Recogni
- [ch10. Approximate Inference](https://nbviewer.jupyter.org/github/ctgk/PRML/blob/master/notebooks/ch10_Approximate_Inference.ipynb)
- [ch11. Sampling Methods](https://nbviewer.jupyter.org/github/ctgk/PRML/blob/master/notebooks/ch11_Sampling_Methods.ipynb)
- [ch12. Continuous Latent Variables](https://nbviewer.jupyter.org/github/ctgk/PRML/blob/master/notebooks/ch12_Continuous_Latent_Variables.ipynb)

## Sponser
https://tracking.gitads.io/?repo=PRML
296 changes: 0 additions & 296 deletions docs/_modules/index.html

This file was deleted.

Loading

0 comments on commit 9e7fad7

Please sign in to comment.