Watts-Lab / deliberation-group-assignment

Algorithms and test suite for assigning participants to groups.
0 stars 0 forks source link

Create scoring algorithm #1

Open JamesPHoughton opened 11 months ago

JamesPHoughton commented 11 months ago

Given a stream of participants, choose the stream that

Want the scoring function itself to be independent of the algorithm used to assign points.

For now we can try a density comparison algorithm:

Density comparison

  1. Define a function over the space we want to sample: maybe uniform or otherwise
  2. Take a KDE of the points we sampled, this gives us
  3. Compare the KDE to the desired density function at a number of points
  4. Integrate difference over the spaceusing a monte carlo integration (or a grid)?