-
Notifications
You must be signed in to change notification settings - Fork 5
Lupi #151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Lupi #151
Changes from 3 commits
7d7b104
dc7537b
5244963
0a1dce8
385b901
912a925
095b901
ccbb871
8daca5a
ad9f2ca
1a6b180
2d1f2fd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,103 @@ | ||||||
| --- | ||||||
| layout: review | ||||||
| title: "LUPI: Learning Using Privileged Information" | ||||||
| tags: machine learning, SVM, privileged information | ||||||
| author: "Juliette Moreau" | ||||||
| cite: | ||||||
| authors: "Vladimir Vapnik and Akshay Vashist" | ||||||
| title: "A new learning paradigm: learning using privileged information. doi: https://doi.org/10.1016/j.neunet.2009.06.042" | ||||||
| venue: "Neural Networks, 2009" | ||||||
| --- | ||||||
|
|
||||||
|
|
||||||
| # Highlights | ||||||
|
|
||||||
| * This paper introduces to a new leanrning paradigm called LUPI. | ||||||
| * The addition of privileged information during the training even if it is not during the inference improves the performances. | ||||||
|
||||||
| * The addition of privileged information during the training even if it is not during the inference improves the performances. | |
| * The addition of privileged information during the training even if it is not present during the inference improves the performances. |
JulietteMoreau marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm perturbed by $$\Lambda$$ and y in $$y=f(x, \alpha*)$$
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| following the unknow probabilty measure $$P(x, x^*, y)$$ and the goal is to find among a collection of functions $$f(x, \alpha), \alpha \in \Lambda$$ the function $$y=f(x, \alpha*)$$ that minimizes the number of incorrect classifications. | |
| following the unknown probability measure $$P(x, x^*, y)$$ and the goal is to find among a collection of functions $$f(x, \alpha), \alpha \in \Lambda$$ the function $$y=f(x, \alpha*)$$ that minimizes the number of incorrect classifications. |
JulietteMoreau marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| > Proposition 1: If any vector $$x \in X$$ belongs to one and only one of the classes and there exists an Oracle function with respect to the best decision rule in the asmissible set of hyperparameters, then with the probablity $$-\eta$$ the following bound holds true | |
| > Proposition 1: If any vector $$x \in X$$ belongs to one and only one of the classes and there exists an Oracle function with respect to the best decision rule in the admissible set of hyperparameters, then with the probablity $$-\eta$$ the following bound holds true |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| > where $$P(y[(w_l,x)+b_l]<0)$$ is the probability of error for the Oracle SVM solution on the training set of size $$l$$, $$P(1-\xi^0 <0)$$ is the probability of error for the best solution in the asmissible set of functions, $$h$$ is the VC dimension of the admissible set of hyperplanes, ans $$A$$ is a constant. | |
| > where $$P(y[(w_l,x)+b_l]<0)$$ is the probability of error for the Oracle SVM solution on the training set of size $$l$$, $$P(1-\xi^0 <0)$$ is the probability of error for the best solution in the admissible set of functions, $$h$$ is the VC dimension of the admissible set of hyperplanes, ans $$A$$ is a constant. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| But in reality a teacher does not know the oracle function, but can supply privileged information instead with the admissible set of the correcting functions $$\phi(x^*, \delta), \delta \in \Delta$$ whiche defines that values of the oracle function $$ \xi^0(x_i) = \phi(x^*_i, \delta_0), \forall (x_i, x^*_i, y_i)$$ | |
| But in reality a teacher does not know the oracle function, but can supply privileged information instead with the admissible set of the correcting functions $$\phi(x^*, \delta), \delta \in \Delta$$ which defines that values of the oracle function $$ \xi^0(x_i) = \phi(x^*_i, \delta_0), \forall (x_i, x^*_i, y_i)$$ |
JulietteMoreau marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
JulietteMoreau marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| There are two parametrisations of such problem: quantitatively when with the value at time $$t$$ we predict the value at $$t+Dt$$ or qualitatively if with the value at time $$t$$ we estimate if it is greater of lower at time $$t+Dt$$. | |
| There are two parametrisations of such problem: quantitatively when with the value at time $$t$$ we predict the value at $$t+Dt$$ or qualitatively, when with the value at time $$t$$ we estimate if it is greater of lower at time $$t+Dt$$. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.