Stop spying on me:
launchctl unload /Library/LaunchAgents/com.paloaltonetworks.gp.pangp*
I want to use the VPN again:
launchctl load /Library/LaunchAgents/com.paloaltonetworks.gp.pangp*
| # Author: Mathieu Blondel | |
| # License: BSD 3 clause | |
| import numpy as np | |
| def projection_simplex(V, z=1, axis=None): | |
| """ | |
| Projection of x onto the simplex, scaled by z: | |
| P(x; z) = argmin_{y >= 0, sum(y) = z} ||y - x||^2 |