https://github.com/GPflow/GPflow
Revision 549394f0b1b0696c7b521a065e49bdae6e7acf27 authored by James Hensman on 05 April 2019, 16:53:51 UTC, committed by st-- on 05 April 2019, 16:53:51 UTC
* first attempt at a notebook with known output noise

* improved known-noise notebook

* improvements to known-noise notebook

* Changed notebook name, added much more commentary, improved links

* correcting spelling and formatting errors

* edits

* rename

* add varying_noise to intro.ipynb
1 parent cedbc86
Raw File
Tip revision: 549394f0b1b0696c7b521a065e49bdae6e7acf27 authored by James Hensman on 05 April 2019, 16:53:51 UTC
Varying noise notebook (#962)
Tip revision: 549394f
Dockerfile
# Copyright 2016 The GPflow authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

#USAGE:
#To run from prebuilt version use:
#docker run -it -p 8888:8888 gpflow/gpflow

#To replicate build use:
#docker build -t gpflow/gpflow .
#Assumes you are running from within cloned repo.

#Uses official Tensorflow docker for cpu only.
FROM tensorflow/tensorflow:1.12.0
COPY ./ /usr/local/GPflow/

RUN cd /usr/local/GPflow && \
    python setup.py develop && \
    rm /notebooks/*  && \
    apt-get clean  && \
    rm -rf /var/lib/apt/lists/*

COPY doc/source/notebooks/ LICENSE README.md /notebooks/
back to top