Production usable contextual bandit library for Python

A lightweight contextual bandit & reinforcement learning library designed to be used in production Python services. – banditml/banditml… Read more

Similar

Why proactively clean Python 2 up?

It seems a recurring complaint that we’re too aggressive on cleaning Python 2 up from packages. Why remove it if (package’s) upstream still supports py2? Why remove it when it still works? Why remove it when somebody’s ready to put some work to keep it... (more…)

Read more »

The Monster Group in Python

The mmgroup package is a python implementation of Conway’s construction [Con85] of the monster group \(\mathbb{M}\). In mathematics the monster group \(\mathbb{M}\) is the largest sporadic finite simple group. The group \(\mathbb{M}\) has order... (more…)

Read more »

A from-scratch tour of Bitcoin in Python

I find blockchain fascinating because it extends open source software development to open source + state. This seems to be a genuine/exciting innovation in computing paradigms; We don’t just get to share code, we get to share a running computer, and anyon... (more…)

Read more »

Python Parameters Primer

Python makes it easy to write functions. For example, I can write: def hello(name): return f'Hello, {name}!' I can then run the function with: hello('world') which will then, not surprisingly, return the string 'Hello, world'... (more…)

Read more »