https://github.com/GPflow/GPflow
Revision 22edd92d06c201b1f40a656e5bbca84a5f483f2d authored by st-- on 14 February 2020, 14:49:30 UTC, committed by GitHub on 14 February 2020, 14:49:30 UTC
- clean up of the documentation
- changes initialization from W=zeros() to W=0.1*ones() which makes it easier to use out of the box - no longer requires manual assigning of symmetry-breaking values to the W matrix after kernel construction
- adds output_covariance() method that computes the covariance between outputs (and output_variance() for its diagonal)
1 parent fea9f0c
Raw File
Tip revision: 22edd92d06c201b1f40a656e5bbca84a5f483f2d authored by st-- on 14 February 2020, 14:49:30 UTC
Improve documentation and behaviour of Coregion kernel (#1255)
Tip revision: 22edd92
Makefile
.PHONY: help clean dev docs package test

help:
	@echo "The following make targets are available:"
	@echo "	dev-install		install all dependencies for dev environment and sets a egg link to the project sources"
	@echo "	install			install all dependencies and the project in the current environment"
	@echo "	package			build pip package"
	@echo "	test			run all tests in parallel"
	@echo "	clean			removes package, build files and egg info"

clean:
	rm -rf dist *.egg-info build

dev-install:
	pip install -e .

install:
	pip install .

package:
	python setup.py bdist

test:
	pytest -n auto tests/
back to top