-
Notifications
You must be signed in to change notification settings - Fork 77
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
Semi-Supervised Learning #75
Comments
The unlabeled dataset requires the exact same structure as the training set (ie same attribute and nominal label order) and the class attribute columns to contain only missing values (ie If you need to introduce missing values, have a look at the missing-values-imputation Weka package. I've added a note to Tutorial.tex to make it clearer. Thanks for pointing it out! |
Thanks for clearing it up. it helped me a lot. |
Dear Meka-Team,
Thank you very much indeed. With kind regards |
From a quick look at the code:
Please note, I don't use Meka, so only some vague pointers. |
Hi,
in the tutorial under the paragraph semi-supervised learning. is in the command an unlabed.arff.
I wonder how in the arff such a line looks. The only thing I found are "?" as attribute values.
For example:
@relation unlabeded
@Attribute X1 NUMERIC
@Attribute X2 NUMERIC
@Attribute y0 {0, 1}
@Attribute y1 {0, 1}
{ 0 42.42, 1 42.42, 2 ?, 3 ? }
Is the above described unlabed? or what does such a dataset look like?
The text was updated successfully, but these errors were encountered: