vlfeat / matconvnet

MatConvNet: CNNs for MATLAB
Other
1.4k stars 752 forks source link

MatConvNet does not support MATLAB versions older than R2012a #1189

Open lucapton opened 6 years ago

lucapton commented 6 years ago

Incompatabilites found so far are:

  1. Object property "access" can only be "public", "protected", or "private" but some DagNN methods pass meta-classes which is only supported starting with R2012a.

    • This might be fixed by changing the meta-class accesses to public.
  2. DagNN inherits from matlab.mixin.Copyable which was added in R2011a.

    • This might be fixed by including code to replace the Copyable class. Ideas here.