
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
losswise
Advanced tools
This is the official Losswise Python library. This library allows for server-side integration of Losswise.
The library can be installed using pip::
pip install losswise
First create an account on the Losswise website (https://losswise.com). This will automatically generate a unique API key.
Typical usage usually looks like this::
import random
import losswise
# replace with your own api key
losswise.set_api_key('your_api_key')
# replace with a string that identifies your model
session = losswise.Session(tag='my_dilated_convnet', max_iter=10, data={'num_params': 10000000})
# create empty graph for loss, keep track of minima here hence kind='min'
graph = session.graph(title='loss', kind='min')
# track artificial loss over time
for x in xrange(10):
train_loss = 1. / (0.1 + x + 0.1 * random.random())
test_loss = 1.5 / (0.1 + x + 0.2 * random.random())
graph.append(x, {'train_loss': train_loss, 'test_loss': test_loss})
# mark session as complete
session.done()
You can then view the visualization results on your dashboard.
FAQs
Official Losswise library for Python
We found that losswise 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.