Changeset 8427 for branches/NCA
- Timestamp:
- 08/07/12 16:49:51 (12 years ago)
- Location:
- branches/NCA
- Files:
-
- 3 added
- 3 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/NCA/HeuristicLab.Algorithms.NCA.Views/3.3
- Property svn:ignore
-
old new 1 1 obj 2 2 Plugin.cs 3 bin
-
- Property svn:ignore
-
branches/NCA/HeuristicLab.Algorithms.NCA.Views/3.3/HeuristicLab.Algorithms.NCA.Views-3.3.csproj
r8420 r8427 168 168 <ItemGroup> 169 169 <None Include="Plugin.cs.frame" /> 170 <Compile Include="NCA ModelView.cs">170 <Compile Include="NCADimensionalityReductionView.cs"> 171 171 <SubType>UserControl</SubType> 172 172 </Compile> 173 <Compile Include="NCA ModelView.Designer.cs">174 <DependentUpon>NCA ModelView.cs</DependentUpon>173 <Compile Include="NCADimensionalityReductionView.Designer.cs"> 174 <DependentUpon>NCADimensionalityReductionView.cs</DependentUpon> 175 175 </Compile> 176 176 <Compile Include="Plugin.cs" /> … … 188 188 </ItemGroup> 189 189 <ItemGroup> 190 <EmbeddedResource Include="NCA ModelView.resx">191 <DependentUpon>NCA ModelView.cs</DependentUpon>190 <EmbeddedResource Include="NCADimensionalityReductionView.resx"> 191 <DependentUpon>NCADimensionalityReductionView.cs</DependentUpon> 192 192 </EmbeddedResource> 193 193 </ItemGroup> -
branches/NCA/HeuristicLab.Algorithms.NCA/3.3/INCAModel.cs
r8412 r8427 23 23 24 24 namespace HeuristicLab.Algorithms.NCA { 25 public interface INCAModel : IClassificationModel { } 25 public interface INCAModel : IClassificationModel { 26 double[,] TransformationMatrix { get; } 27 } 26 28 } -
branches/NCA/HeuristicLab.Algorithms.NCA/3.3/NCA.cs
r8425 r8427 88 88 89 89 protected override void Run() { 90 var classification = NeighborhoodComponentsAnalysis.CreateNCASolution( Problem.ProblemData, K.Value, ReduceDimensions.Value, InitializationParameter.Value);90 var classification = NeighborhoodComponentsAnalysis.CreateNCASolution((IClassificationProblemData)Problem.ProblemData.Clone(), K.Value, ReduceDimensions.Value, InitializationParameter.Value); 91 91 Results.Add(new Result("ClassificationSolution", "The classification solution.", classification)); 92 92 }
Note: See TracChangeset
for help on using the changeset viewer.