• 大小: 0.31M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 实例  C#  引擎  源码  

资源简介

C# 协同过滤 推荐引擎 实例源码

资源截图

代码片段和文件信息

namespace org.apache.commons.math3.distribution
{
    using org.apache.commons.math3.exception;
    using org.apache.commons.math3.random;
    using org.apache.commons.math3.util;
    using System;

    public abstract class AbstractIntegerDistribution
    {
        protected RandomGenerator random;

        protected AbstractIntegerDistribution(RandomGenerator rng)
        {
            this.random = rng;
        }

        private double checkedCumulativeProbability(int argument)
        {
            double naN = double.NaN;
            naN = this.cumulativeProbability(argument);
            if (double.IsNaN(naN))
            {
                throw new Exception(“DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN“);
            }
            return naN;
        }

        public abstract dou

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         483  2015-05-24 18:35  .gitattributes
     文件        2658  2015-05-24 18:35  .gitignore
     目录           0  2015-05-24 18:35  ntaste\
     文件        2509  2015-05-24 18:35  ntaste.sln
     文件      282112  2015-05-24 18:35  ntaste.suo
     目录           0  2015-05-24 18:35  ntaste.Test\
     文件         184  2015-05-24 18:35  ntaste.Test\App.config
     目录           0  2015-05-24 18:35  ntaste.Test\bin\
     目录           0  2015-05-24 18:35  ntaste.Test\bin\Debug\
     文件       24224  2015-05-24 18:35  ntaste.Test\bin\Debug\ntaste.Test.vshost.exe
     目录           0  2015-05-24 18:35  ntaste.Test\datafile\
     文件         210  2015-05-24 18:35  ntaste.Test\datafile\item.csv
     文件       35655  2015-05-24 18:35  ntaste.Test\datafile\randomData.csv
     文件        2796  2015-05-24 18:35  ntaste.Test\ntaste.Test.csproj
     目录           0  2015-05-24 18:35  ntaste.Test\obj\
     目录           0  2015-05-24 18:35  ntaste.Test\obj\Debug\
     文件           0  2015-05-24 18:35  ntaste.Test\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
     文件           0  2015-05-24 18:35  ntaste.Test\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
     文件           0  2015-05-24 18:35  ntaste.Test\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
     文件        5209  2015-05-24 18:35  ntaste.Test\Program.cs
     目录           0  2015-05-24 18:35  ntaste.Test\Properties\
     文件        1308  2015-05-24 18:35  ntaste.Test\Properties\AssemblyInfo.cs
     文件      400896  2015-05-24 18:35  ntaste.v11.suo
     文件       16367  2015-05-24 18:35  ntaste\ntaste.csproj
     目录           0  2015-05-24 18:35  ntaste\org\
     目录           0  2015-05-24 18:35  ntaste\org\apache\
     目录           0  2015-05-24 18:35  ntaste\org\apache\commons\
     目录           0  2015-05-24 18:35  ntaste\org\apache\commons\math3\
     目录           0  2015-05-24 18:35  ntaste\org\apache\commons\math3\distribution\
     文件        4447  2015-05-24 18:35  ntaste\org\apache\commons\math3\distribution\AbstractIntegerDistribution.cs
     文件        9251  2015-05-24 18:35  ntaste\org\apache\commons\math3\distribution\PascalDistribution.cs
............此处省略197个文件信息

评论

共有 条评论