Skip to content

Adding custom experiments #104

Closed Answered by Scienfitz
ustojiljkoff asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @ustojiljkoff ,

the solution is even simpler.

As long as your additional point (or several points) are part of the searchspace, you can simply add them via add_measurements, no need for index matching, column sorting or any matching, baybe takes care of that.
Eg:

my_custom_data = pd.DataFrame.from_records([
    {"Solvent": "DMAc", 
     "Base": "KOAc", 
     "Ligand": "BrettPhos", 
     "Temperature": 120, 
     "Concentration": 0.153, 
     "Yield": 42.0}
])

my_campaign.add_measurements(my_custom_data)

In fact you can do this any time, even before you trigger your first recommendation.

On another note: you can also get all possible combinations in case you have a purely discrete sear…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@ustojiljkoff
Comment options

@AdrianSosic
Comment options

Answer selected by ustojiljkoff
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants