IMP logo
IMP Reference Guide  2.8.0
The Integrative Modeling Platform
GaussianProcessInterpolationRestraint.h
Go to the documentation of this file.
1 /**
2  * \file IMP/isd/GaussianProcessInterpolationRestraint.h
3  * \brief Restraint and ScoreState for GaussianProcessInterpolation
4  *
5  * Copyright 2007-2017 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPISD_GAUSSIAN_PROCESS_INTERPOLATION_RESTRAINT_H
9 #define IMPISD_GAUSSIAN_PROCESS_INTERPOLATION_RESTRAINT_H
10 
11 #include <IMP/isd/isd_config.h>
12 #include <IMP/macros.h>
13 #include <boost/scoped_ptr.hpp>
14 #include <IMP/Restraint.h>
17 #include <IMP/Pointer.h>
18 #include <IMP/algebra/eigen3/Eigen/Dense>
19 
20 #include <IMP/ScoreState.h>
21 
22 IMPISD_BEGIN_NAMESPACE
23 
24 class GaussianProcessInterpolationScoreState;
25 
26 //! gaussian process restraint
27 /* the restraint is a multivariate normal distribution on the vector of
28 * observations with mean and standard deviation given by the posterior of the
29 * gaussian process.
30 */
32  : public Restraint {
33  private:
34  // checks and makes necessary updates
35  void update_mean_and_covariance();
39  // number of observation points
40  unsigned M_;
41 
42  void create_score_state();
43 
44  public:
45  /** This is a restraint on other restraints. It first constructs the
46  necessary vectors from GaussianProcessInterpolation, then creates a
47  multivariate normal distribution around it. Upon evaluation, it
48  checks if parameters have changed, reconstructs the matrix if
49  necessary, changes the DA weight and passes it to the functions. */
52 
53  /** To call this, you need to update the scorestate before.
54  calling model.evaluate(False) is enough. */
55  double get_probability() const { return mvn_->density(); }
56 
57  IMPISD_DEPRECATED_METHOD_DECL(2.7)
58  void stats() const;
59 
60  //! Use conjugate gradients when possible (default false)
61  void set_use_cg(bool use, double tol) { mvn_->set_use_cg(use, tol); }
62 
63  //! Get minus log normalization and minus exponent separately
64  double get_minus_log_normalization() const;
65  double get_minus_exponent() const;
66 
67  //! Get hessian of the minus log likelihood
68  IMP_Eigen::MatrixXd get_hessian() const;
69 
70  //! Get log determinant of hessian
71  double get_logdet_hessian() const;
72 
73  //! call this one from Python
74  FloatsList get_hessian(bool unused) const;
75 
76  public:
77  double unprotected_evaluate(IMP::DerivativeAccumulator *accum) const
81 
82  // to allow the scorestate to get the restraint's objects
83  friend class GaussianProcessInterpolationScoreState;
84 };
85 
86 #if !defined(IMP_DOXYGEN) && !defined(SWIG)
87 class IMPISDEXPORT GaussianProcessInterpolationScoreState : public ScoreState {
88  private:
90 
91  private:
92  GaussianProcessInterpolationScoreState(
93  GaussianProcessInterpolationRestraint *gpir)
94  : ScoreState(gpir->get_model(),
95  "GaussianProcessInterpolationScoreState%1%"),
96  gpir_(gpir) {}
97 
98  public:
99  // only the GPIR can create this and add it to the model
100  friend class GaussianProcessInterpolationRestraint;
101  virtual void do_before_evaluate() IMP_OVERRIDE;
102  virtual void do_after_evaluate(DerivativeAccumulator *da) IMP_OVERRIDE;
105  IMP_OBJECT_METHODS(GaussianProcessInterpolationScoreState);
106 };
107 #endif
108 
109 IMPISD_END_NAMESPACE
110 
111 #endif /* IMPISD_GAUSSIAN_PROCESS_INTERPOLATION_RESTRAINT_H */
Normal distribution of Function.
Smart pointer to Object-derived classes that does not refcount.
Definition: WeakPointer.h:76
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
Various general useful macros for IMP.
Normal distribution of Function.
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:72
ScoreStates maintain invariants in the Model.
Definition: ScoreState.h:53
A smart pointer to a ref-counted Object that is a class member.
Definition: Pointer.h:146
Shared score state.
virtual ModelObjectsTemp do_get_outputs() const =0
A nullptr-initialized pointer to an IMP Object.
Abstract base class for all restraints.
virtual ModelObjectsTemp do_get_inputs() const =0
#define IMP_OVERRIDE
Cause a compile error if this method does not override a parent method.
Class for adding derivatives from restraints to the model.
A restraint is a term in an IMP ScoringFunction.
Definition: Restraint.h:52