You are here

Scoring Weights

2 posts / 0 new
Last post
Scoring Weights
#1

Can anyone tell me how to determine the weighting of all the scoring terms?

Tue, 2009-07-28 18:08
AndrewBworth

Hi

Weights are stored in an EnergyMap with is essentially a 1d vector, with an entry for each score term.

Here is an example of how to print the energy weights out of a score function.

{CODE()}
using namespace core::scoring

ScoreFunction scorefxn( ScoreFunctionFactory::create_score_function( STANDARD_WTS ) );

EnergyMap emap( scorefxn.weights() );

{CODE}

This can then be piped with the two brakets operator to cout for example.

Hope that helps,

Best,
Matt

> Can anyone tell me how to determine the weighting of all the scoring terms?

Sun, 2009-08-09 14:06
momeara