Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/08/19 00:23:12 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16584, 16585,16594,16595, 16625, 16658, 16659, 16672, 16707, 16729, 16792, 16796, 16797, 16799, 16819, 16906, 16907, 16908, 16933, 16945, 16992, 16994, 16995, 16996, 16997, 17014, 17015, 17017, 17020, 17021, 17022, 17023, 17024, 17029, 17086, 17087, 17088, 17089 into stable.

Location:
stable
Files:
1 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Algorithms.DataAnalysis

  • stable/HeuristicLab.Algorithms.DataAnalysis/3.4

  • stable/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/RegressionTreeModel.cs

    r17097 r17105  
    9191    #region old storable format
    9292    // remove with HL 3.4
    93     [Storable(AllowOneWay = true)]
     93    [Storable(OldName = "SerializedTree")]
    9494    // to prevent storing the references to data caches in nodes
    9595    // seemingly, it is bad (performance-wise) to persist tuples (tuples are used as keys in a dictionary)
  • stable/HeuristicLab.Algorithms.DataAnalysis/3.4/HeuristicLab.Algorithms.DataAnalysis-3.4.csproj

    r17097 r17105  
    111111      <Private>False</Private>
    112112    </Reference>
    113     <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
    114       <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath>
    115     </Reference>
    116     <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    117       <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre02\lib\net461\HEAL.Attic.dll</HintPath>
    118     </Reference>
    119113    <Reference Include="LibSVM-3.12, Version=3.12.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    120114      <HintPath>..\..\bin\LibSVM-3.12.dll</HintPath>
     
    126120    </Reference>
    127121    <Reference Include="System.Drawing" />
    128     <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
    129       <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath>
    130     </Reference>
    131122  </ItemGroup>
    132123  <ItemGroup>
     
    456447  <ItemGroup>
    457448    <None Include="HeuristicLab.snk" />
    458     <None Include="packages.config" />
    459449    <None Include="Plugin.cs.frame" />
    460450    <None Include="Properties\AssemblyInfo.cs.frame" />
     
    476466      <Install>true</Install>
    477467    </BootstrapperPackage>
     468  </ItemGroup>
     469  <ItemGroup>
     470    <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     471      <SpecificVersion>False</SpecificVersion>
     472      <HintPath>..\..\bin\HEAL.Attic.dll</HintPath>
     473      <Private>False</Private>
     474    </Reference>
    478475  </ItemGroup>
    479476  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  • stable/HeuristicLab.Algorithms.DataAnalysis/3.4/NeuralNetwork/NeuralNetworkEnsembleModel.cs

    r17097 r17105  
    153153      return new NeuralNetworkEnsembleClassificationSolution(this, new ClassificationEnsembleProblemData(problemData));
    154154    }
    155    
     155
    156156    #region persistence
    157157    [Storable]
     
    183183      }
    184184    }
    185     [Storable(AllowOneWay = true)]
     185    [Storable(OldName = "MultiLayerPerceptronEnsembleDfdnet")]
    186186    private double[] MultiLayerPerceptronEnsembleDfdnet {
    187187      set {
     
    197197      }
    198198    }
    199     [Storable(AllowOneWay = true)]
     199    [Storable(OldName = "MultiLayerPerceptronEnsembleNeurons")]
    200200    private double[] MultiLayerPerceptronEnsembleNeurons {
    201201      set { mlpEnsemble.innerobj.network.neurons = value; }
    202202    }
    203     [Storable(AllowOneWay = true)]
     203    [Storable(OldName = "MultiLayerPerceptronEnsembleSerializedMlp")]
    204204    private double[] MultiLayerPerceptronEnsembleSerializedMlp {
    205205      set {
     
    207207      }
    208208    }
    209     [Storable(AllowOneWay = true)]
     209    [Storable(OldName = "MultiLayerPerceptronStuctinfo")]
    210210    private int[] MultiLayerPerceptronStuctinfo {
    211211      set {
  • stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Plugin.cs.frame

    r17097 r17105  
    4242  [PluginDependency("HeuristicLab.Optimization", "3.3")]
    4343  [PluginDependency("HeuristicLab.Parameters", "3.3")]
    44   [PluginDependency("HeuristicLab.Persistence", "3.3")]
     44  [PluginDependency("HeuristicLab.Attic", "1.0")]
    4545  [PluginDependency("HeuristicLab.Problems.DataAnalysis", "3.4")]
    4646  [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")]
Note: See TracChangeset for help on using the changeset viewer.