You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run general_routine\mainTest.m but there are several bugs:
- options.graph has no value.
Error:
Reference to non-existent field 'graph'.
Error in KMA (line 76)
if isfield(options.graph,'nn') == 0
Error in mainTest (line 178)
[ALPHA,LAMBDA,options] = KMA(labeled,unlabeled,options);
To fix it, before [ALPHA,LAMBDA,options] = KMA(labeled,unlabeled,options); I wrote options.graph = 'nn';
- options.printing has no value.
Error:
Reference to non-existent field 'printing'.
Error in KMA (line 139)
if options.printing == 1
Error in mainTest (line 179)
[ALPHA,LAMBDA,options] = KMA(labeled,unlabeled,options);
To fix it, before [ALPHA,LAMBDA,options] = KMA(labeled,unlabeled,options); I wrote options.printing = 1;
- options.lambda has no value.
Error:
options.lambda
Reference to non-existent field 'lambda'.
Error in KMA (line 157)
A = ((1-options.mu)*L + options.mu*(Ls))+options.lambda*eye(size(Ls)); % (n1+n2) x (n1+n2) %
%+lambda*eye(size(Ls))
Error in mainTest (line 180)
[ALPHA,LAMBDA,options] = KMA(labeled,unlabeled,options);
I'm not sure how to fix this error. Could you please help to fix these errors.
I want to project data from 3 domains into latent space and use this latent features for classification. Could you please guide how I can get projections from 3 domains.
Thanks
The text was updated successfully, but these errors were encountered:
I'm trying to run
general_routine\mainTest.m
but there are several bugs:-
options.graph
has no value.Error:
To fix it, before
[ALPHA,LAMBDA,options] = KMA(labeled,unlabeled,options);
I wroteoptions.graph = 'nn';
-
options.printing
has no value.Error:
To fix it, before
[ALPHA,LAMBDA,options] = KMA(labeled,unlabeled,options);
I wroteoptions.printing = 1;
-
options.lambda
has no value.Error:
I'm not sure how to fix this error. Could you please help to fix these errors.
I want to project data from 3 domains into latent space and use this latent features for classification. Could you please guide how I can get projections from 3 domains.
Thanks
The text was updated successfully, but these errors were encountered: