Here are a few papers that I saw at Allerton — more to come later.
Group Testing with Unreliable Elements
Arya Mazumdar, Soheil Mohajer
This was a generalization of the group testing problem: items are either positive or null, and can be tested in groups such that if any element of the group is positive, the whole group will test positive. The item states can be thought of as a binary column vector and each test is the row or a matrix
: the
-the entry of
is 1 if the
-th item is part of the
-th group. The multiplication
is taken using Boolean OR. The twist in this paper is that they consider a situation where
elements can “pretend” to be positive in each test, with a possibly different group in each test. This is different than “noisy group testing” which was considered previously, which is more like
. They show achievable rates for detecting the positives using random coding methods (i.e. a random
matrix). There was some stuff at the end about the non-i.i.d. case but my notes were sketchy at that point.
The Minimal Realization Problems for Hidden Markov Models
Qingqing Huang, Munther Dahleh, Rong Ge, Sham Kakade
The realization problem for an HMM is this: given the exact joint probability distribution on length strings
from an HMM, can we create a multilinear system whose outputs have the same joint distribution? A multilinear system looks like this:
for
with
We think of as the transition for state
(e.g. a stochastic matrix) and we want the output to be
. This is sort of at the nexus of control/Markov chains and HMMs and uses some of the tensor ideas that are getting hot in machine learning. As the abstract puts it, the results are that they can efficiently construct realizations if
, where
is the size of the output alphabet size, and
is the minimal order of the realization.”
Differentially Private Distributed Protocol for Electric Vehicle Charging
Shuo Han, Ufuk Topcu, George Pappas
This paper was about a central aggregator trying to get multiple electric vehicle users to report their charging needs. The central allocator has a utility maximization problem over the rates of charging:
They focus on the case where the charge demands are private but the charging rates
can be public. This is in contrast to the mechanism design literature popularized by Aaron Roth and collaborators. They do an analysis of a projected gradient descent procedure with Laplace noise added for differential privacy. It’s a stochastic gradient method but seems to converge in just a few time steps — clearly the number of iterations may impact the privacy parameter, but for the examples they showed it was only a handful of time steps.
An Interactive Information Odometer and Applications
Mark Braverman and Omri Weinstein
This was a communication complexity talk about trying to maintain an estimate of the information complexity of a protocol for computing a function
interactively, where Alice has
, Bob has
, and
:
Previous work has shown that the (normalized) communication complexity of computing on
-tuples of variables
-accurately approaches the minimum information complexity over all protocols for computing
once
-accurately. At least I think this is what was shown previously — it’s not quite my area. The result in this paper is a strong converse for this — the goal is to maintain an online estimate of
during the protocol. The mechanism seeems a bit like communication with feedback a la Horstein, but I got a bit confused as to what was going on — basically it seems that Alice and Bob need to be able to agree on the estimate during the protocol and use a few extra bits added to the communication to maintain this estimate. If I had an extra
hours in the week I would read up more about this. Maybe on my next plane ride…