
Security News
Opengrep Adds Apex Support and New Rule Controls in Latest Updates
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
A package for the Cyclic Gradient Boosting Machine algorithm. For the (pre-print) paper describing the algorithm, see here.
You can install the package using pip:
pip install cyc-gbm
Alternatively, you can install the package from source. This will also include a pipeline for reproducing the results in the paper. Follow these steps:
git clone https://github.com/henningzakrisson/cyc-gbm.git
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Fitting the mean and (log) sigma parameters of a normal distribution to a simulated dataset:
import numpy as np
from cyc_gbm import CyclicalGradientBooster
from sklearn.model_selection import train_test_split
# Simulate data
X = np.random.normal(size=(1000, 2))
mu = X[:, 0] + 10 * (X[:, 1] > 0)
sigma = np.exp(3 - 2 * (X[:, 0] > 0))
y = np.random.normal(mu, sigma)
# Split data
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)
# Fit model
model = CyclicalGradientBooster(
distribution='normal',
learning_rate=0.1,
n_estimators=[26, 34],
min_samples_split = 2,
min_samples_leaf=20,
max_depth=2,
)
model.fit(X_train, y_train)
# Evaluate
loss = model.dist.loss(y=y_test, z=model.predict(X_test)).sum()
print(f'negative log likelihood: {loss}')
If you have any questions, feel free to contact me here.
FAQs
A python package for the Cyclic Gradient Boosting Machine algorithm
We found that cyc-gbm 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
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.