You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HSPiPy now uses the classic grid-based algorithm as the default fitting method, which provides deterministic results and good performance for most use cases. The library maintains support for multiple optimization approaches to accommodate different needs.
Context
HSPiPy fits Hansen Solubility Parameter (HSP) spheres using several algorithms:
Classic grid-based search (new default) - Deterministic, fast, and reproducible
Differential evolution from SciPy - Global optimization, robust but slower
Various SciPy minimize methods - Local optimization for specific use cases
Current Implementation
Available Algorithms:
classic (default): Grid-based search with deterministic results
differential_evolution: Global optimization for complex landscapes
Nelder-Mead, Powell, BFGS, L-BFGS-B, TNC, COBYLA, SLSQP: Local optimization methods
Algorithm Characteristics:
Method
Type
Speed
Reproducible
Global Search
classic
Grid-based
Fast
✅ Yes
Limited
differential_evolution
Evolutionary
Slow
❌ No
✅ Yes
Local optimizers
Gradient-based
Medium
✅ Yes
❌ No
Questions for the Community
Experience: Which optimizers have worked best for your specific HSP fitting problems?
Reproducibility: How important is deterministic behavior in your workflow? Is it more a grid design issue?
Benchmarks: Would anyone be interested in contributing datasets to compare algorithm performance?
New Algorithms: Are there specific optimization approaches you'd like to see added?
💬 Feedback is very welcome! Please share your experiences, preferences, and feel free to include links to relevant publications.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Update (Current Status)
HSPiPy now uses the classic grid-based algorithm as the default fitting method, which provides deterministic results and good performance for most use cases. The library maintains support for multiple optimization approaches to accommodate different needs.
Context
HSPiPy fits Hansen Solubility Parameter (HSP) spheres using several algorithms:
Current Implementation
Available Algorithms:
classic(default): Grid-based search with deterministic resultsdifferential_evolution: Global optimization for complex landscapesNelder-Mead,Powell,BFGS,L-BFGS-B,TNC,COBYLA,SLSQP: Local optimization methodsAlgorithm Characteristics:
classicdifferential_evolutionQuestions for the Community
💬 Feedback is very welcome! Please share your experiences, preferences, and feel free to include links to relevant publications.
Beta Was this translation helpful? Give feedback.
All reactions