-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make further modifications for parameter manipulation in ForceField #92
Comments
Additional things which were discussed on today's call that we will need:
Should we also have Another key issue: How do we specify what parameters we want to work with? Currently, for my prototyping, I've been using def getParameter(self, smirks = None, paramID=None, force_type='Implied'):
"""Get info associated with a particular parameter as specified by SMIRKS or parameter ID, and optionally force term.
Parameters
----------
smirks (optional) : str
Default None. If specified, will pull parameters on line containing this `smirks`.
paramID : str
Default None. If specified, will pull parameters on line with this `id`
force_type : str
Default "Implied". Optionally, specify a particular force type such as
"HarmonicBondForce" or "HarmonicAngleForce" etc. to search for a
matching ID or SMIRKS.
Returns
-------
params : dict
Dictionary of attributes (parameters and their descriptions) from XML
""" There's a possible point of confusion in my terminology as the function is called I'm by no means attached to this particular approach, though it currently works well , i.e. params = newff.getParameter(smirks='[#6X4:1]')` is a nice compact way to retrieve the relevant info. (This takes advantage of the fact that the SMIRKS pattern is currently unique in the XML so no force type needs to be specified). @jchodera - Is there another framework which would be better? This will be key for determining which arguments the above functions ought to take. I'm happy to implement, I'd just like to know what you see as the best way of specifying which parameter set to work on. |
@jchodera , input on this? |
It would help if we first ask: "What will our main activities be for this API?" and then see if the proposed API satisfies all these needs. We'll want to code up several kinds of proposal engines, but the most basic ones need to do the following: Propose adding a new parameter, potentially restricted to a given class (nonbonded, bond, angle, torsion)In this case, we want to
Propose deleting a parameterIn this case, we want to:
Propose a parameter to perturbIn this case, we want to:
Walk the hierarchy to generate diagnostic readoutsWe may want some methods to help us generate diagnostic info. Propose the exchange of two or more exchangeable parametersI think this requires we
Does that cover this? |
@jchodera - I think I agree with the basic "main activities" you summarize, and what those would involve. So we would need to implement:
We'll also need, as you note, these to return the probabilities of making the specific choices made. Plus some utility tools for diagnostics, etc.:
Proposed names and ideas on arguments
I'll get to the utility functions after we work through these. Key questionA key question for finalizing the arguments is how we want to identify what parameter line we're working on from SMIRFF, i.e. once we pick something via |
@jchodera - one other question. I'm not an expert on Metropolis-Hastings yet, but it looks to me like you swapped your proposal probabilities above. Specifically, you say that for adding a new parameter, we need to evaluate the probability that this would be selected by the "propose deleting a parameter" call, and for deleting a parameter we need to "evaluate the probability this parameter's parent would be selected to add a child parameter by the 'propose adding a new parameter' call". Isn't this backwards? Though, perhaps you're just saying that we need both g(x'|x) and g(x|x') for move evaluation, i.e. for adding a new parameter we need both the probability of proposing that specific addition, and the probability of proposing a deletion which would have gotten us here. Is that right? |
The Metropolis-Hastings acceptance criteria is
When proposing Suppose we pick a parameter to delete. We need to know BOTH the probability we selected it to be deleted Same deal for the case of creating a parameter. |
That makes sense. It's where I ultimately ended up, though it wasn't what I got when I first read your note. Thanks for the clarification. |
Offline I asked David if there was a way to extract smirks or parameter IDs from a forcefield object. It would be useful to be able to extract parameter information without knowing about the parameter. Perhaps a method that will return lists of parameter objects if given a forcetype? |
See discussion in #84 and #86 . #86 implemented very basic infrastructure for parameter manipulation. Some other things we will likely need:
GetParameterIDs
, getting all parameter IDs for a particular section (needed for determining unique parameter IDs for new child parameters)Presumably later we will also need the ability to introduce new parameters, such as something like:
CreateChildParameter(smirks, parentsmirks, section, paramdict)
DeleteChildParameter
which would delete a specified parameter which is a child of another parameterWe will probably also need something which tracks the parameter hierarchy so we know which parameters can be deleted (at least without substantial work, only parameters which have no children can be deleted). We have a
parent_id
in the XML now which is used for that, so we'd just need functionality for retrieving this.The text was updated successfully, but these errors were encountered: