![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A Python package of accelerated first-order algorithms for solving relatively-smooth convex optimization problems
minimize { f(x) + P(x) | x in C }
with a reference function h(x), where C is a closed convex set and
Additional algorithms for solving D-Optimal Experiment Design problems:
Clone or fork from GitHub. Or install from PyPI:
pip install accbpg
Example: generate a random instance of D-optimal design problem and solve it using two different methods.
import accbpg
# generate a random instance of D-optimal design problem of size 80 by 200
f, h, L, x0 = accbpg.D_opt_design(80, 200)
# solve the problem instance using BPG with line search
x1, F1, G1, T1 = accbpg.BPG(f, h, L, x0, maxitrs=1000, verbskip=100)
# solve it again using ABPG with gamma=2
x2, F2, G2, T2 = accbpg.ABPG(f, h, L, x0, gamma=2, maxitrs=1000, verbskip=100)
# solve it again using adaptive variant of ABPG with gamma=2
x3, F3, G3, _, _, T3 = accbpg.ABPG_gain(f, h, L, x0, gamma=2, maxitrs=1000, verbskip=100)
D-optimal experiment design problems can be constructed from files (LIBSVM format) directly using
f, h, L, X0 = accbpg.D_opt_libsvm(filename)
All algorithms can work with customized functions f(x) and h(x), and an example is given in this Python file.
A complete example with visualization is given in this Jupyter Notebook.
All examples in HRX2018 can be found in the ipynb directory.
Comparisons with the Frank-Wolfe method can be found in ipynb/ABPGvsFW.
FAQs
Accelerated Bregman proximal gradient (ABPG) methods
We found that accbpg demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.