CabSauce

CabSauce t1_j8nuthg wrote

You can update a model with new data at any time. Production models are often updated at intervals with monitoring. There are a few challenges to updating continuously.

  1. Distributed models would have to be updated. How do we update weights from two sources? (There might be options for this, I haven't looked.)
  2. Potential for undesirable and unstable predictions/generations.
  3. I think you'd have to allow the weights to update pretty dramatically at each inference to get any real variation. I think this would lead to #2
  4. Attention components probably do what you're looking for more accurately and efficiently.
15