skent259 / mildsvm

Multiple Instance Learning with Distributions, SVM
Other
3 stars 0 forks source link

Add dual method to `omisvm()` function #41

Closed skent259 closed 2 years ago

skent259 commented 2 years ago

Two options for adding the dual:

  1. Transform data with data replication, then pass down to misvm() method
  1. Write a new dualqp fit and model function in the omisvm case that solves the modified problem

The key barrier is the kernel computation. There might be a nice way to do this if selected is consistent and can be recovered from the original x matrix?

skent259 commented 2 years ago

Implemented with #44

Lingering issues:

skent259 commented 2 years ago

Fixed performance lingering issue with #51