登录
首页 » C# » NBCFfuction

NBCFfuction

于 2012-03-05 发布 文件大小:8861KB
0 155
下载积分: 1 下载次数: 178

代码说明:

  协同过滤推荐算法,实验数据集是movie-lens(Neighbourhood-base Collaborative Filtering Algorithm)

文件列表:

NBCFfuction
...........\Pearson
...........\.......\corItem
...........\.......\.......\PearsonCoeffition.txt,3318629,2011-12-11
...........\.......\.......\PredictTable.txt,1321,2011-12-11
...........\.......\.......\RateTable.txt,17801762,2011-12-11
...........\.......\.......\UserAverage.txt,19926,2011-12-11
...........\.......\E.txt,19,2011-12-11
...........\.......\Pearson
...........\.......\.......\bin
...........\.......\.......\...\Debug
...........\.......\.......\...\.....\Pearson.exe,8704,2012-02-16
...........\.......\.......\...\.....\Pearson.pdb,22016,2012-02-16
...........\.......\.......\...\.....\Pearson.vshost.exe,11600,2012-02-16
...........\.......\.......\...\.....\Pearson.vshost.exe.manifest,490,2010-03-17
...........\.......\.......\obj
...........\.......\.......\...\x86
...........\.......\.......\...\...\Debug
...........\.......\.......\...\...\.....\DesignTimeResolveAssemblyReferencesInput.cache,5973,2012-02-16
...........\.......\.......\...\...\.....\Pearson.csproj.FileListAbsolute.txt,351,2012-02-16
...........\.......\.......\...\...\.....\Pearson.exe,8704,2012-02-16
...........\.......\.......\...\...\.....\Pearson.pdb,22016,2012-02-16
...........\.......\.......\...\...\.....\ResolveAssemblyReference.cache,6580,2011-12-11
...........\.......\.......\...\...\.....\TempPE
...........\.......\.......\Pearson.csproj,2481,2011-12-10
...........\.......\.......\Program.cs,9433,2012-02-16
...........\.......\.......\Properties
...........\.......\.......\..........\AssemblyInfo.cs,1426,2011-12-10
...........\.......\Pearson.sln,863,2011-12-10
...........\.......\PearsonCoeffition.txt,3100212,2012-02-16
...........\.......\PredictTable.txt,425371,2012-02-16
...........\.......\RateTable.txt,17807955,2012-02-16
...........\.......\UserAverage.txt,19928,2012-02-16
...........\.......\WholeSet
...........\.......\........\PearsonCoeffition.txt,3494163,2011-12-11
...........\.......\........\PredictTable.txt,1318,2011-12-11
...........\.......\........\RateTable.txt,17801762,2011-12-11
...........\.......\........\UserAverage.txt,19926,2011-12-11

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • NEC_YOUKONG
    红外遥控,24键红外遥控,红外遥控器软件解码原理和程序(C51) 红外一开始发送一段13。5ms的引导码,引导码由9ms的高电平和4。5ms的低电平组成,跟着引导码是系统码,系统反码,按键码,按键反码.(Infrared remote control, 24-key infrared remote control, infrared remote control software decoding principles and procedures (C51) started to send a IR 13. 5ms boot code, boot code from the 9ms high and 4. 5ms low-level components, along with guidance code is the system code, system, anti-code, key code, key counter code.)
    2011-07-09 21:44:32下载
    积分:1
  • LXJZ
    Human Resource Management System()
    2018-05-18 10:00:36下载
    积分:1
  • 最新SVM实现(C++,java,python)
    libsvm是由台湾大学林智仁(Lin Chih-Jen)教授开发的一款简单易用、快速有效的SVM模式识别与回归的软件包。这套库运算速度还是挺快的,可以很方便的对数据做分类或回归。由于libSVM程序小,运用灵活,输入参数少,并且是开源的,易于扩展,因此成为目前国内应用最多的SVM的库。libsvm不但提供了编译好的可在Windows系列系统的执行文件,还提供了源代码,方便改进、修改以及在其它操作系统上应用;libsvm对SVM所涉及的参数调节相对比较少,提供了很多的默认参数,利用这些默认参数可以解决很多问题;并提供了交互检验(Cross Validation)的功能,可以解决C-SVM、ν-SVM、ε-SVR和ν-SVR等问题,包括基于一对一算法的多类模式识别问题。为了方便大家体验,多多小编为大家提供最新版的libsvm程序下载,该软件包以源代码和可执行文件两种方式给出的。如果是Windows系列操作系统,可以直接使用软件包提供的程序,也可以进行修改编译;如果是Unix类系统,必须自己编译,软件包中提供了编译格式文件,在SGI工作站(操作系统IRⅨ6.5)上,使用免费编译器GNU C 3.3编译通过,有需求的朋友请下载使用。下载软件压缩包,解压,可以看到libsvm可分为5个文件夹和一些c 源码文件,其详细说明如下:1、Java——主要是应用于java平台;2、Python——是用来参数优选的工具,稍后介绍;3、svm-toy——一个可视化的工具,用来展示训练数据和分类界面,里面是源码,其编译后的程序在windows文件夹下;4、tools——主要包含四个python文件,用来数据集抽样(subset),参数优选(grid),集成测试(easy),数据检查(checkdata);5、windows——包含libSVM四个exe程序包,我们所用的库就是他们,里面还有个heart_scale,是一个样本文件,可以用记事本打开,用来测试用的。6、其他.h和.cpp文件都是程序的源码,可以编译出相应的.exe文件。其中,最重要的是svm.h和svm.cpp文件,svm-predict.c、svm-scale.c和svm-train.c(还有一个svm-toy.c在svm-toy文件夹中)都是调用的这个文件中的接口函数,编译后就是windows下相应的四个exe程序。7、另外,里面的 README 跟 FAQ也是很好的文件,对于初学者如果E文过得去,可以看一下。
    2020-02-23下载
    积分:1
  • promram
    说明:  此程序是用MATLAB编写的时域解,相关的LMS自适应算法程序,(This program is written in MATLAB time domain solution, the related LMS adaptive algorithm program,)
    2019-04-18 18:44:17下载
    积分:1
  • ARM-Linux开发详解
    嵌入式LINUX开发详解,指令嵌入式linux开发很好的书籍。(embeded linux develop good book,)
    2019-03-06 19:34:27下载
    积分:1
  • Mapinfo--Map-For-ShanDong-ZaoZhuang
    山东枣庄市Mapinfo地图,包括各个图层.可直接使用.(Zaozhuang City, Shandong Mapinfo map, including all layers. Can be used directly.)
    2011-06-10 09:42:15下载
    积分:1
  • NRCDKFQ
    说明:  话费语音查询及点歌软件 电信商用,通过电话查询话费,还可以点歌,本版只支持东进语音卡(Telephone fee voice inquiry and song-ordering software telecommunications business, telephone call inquiry fee, but also can order songs, this version only supports Dongjin voice card)
    2019-04-02 19:28:56下载
    积分:1
  • Vector_CCP
    Vector的CCP协议源代码实现的样例和文档。(File CCP.ZIP: CCP Driver Sourcecode: CCP.C CCP 2.1 Driver ANSI-C Source CCP.H CCP 2.1 Driver Include File CCPPAR.H Include File for customizing CCP.C Documentation: DOC CCP21.PDF ASAM CCP 2.1 Specification (Acrobat Reader) CCP.DOC Reference Documentation for the CCP Driver CCP.C (MS Word) CCPINTRO.PDF Small Introduction to CCP (Acrobat Reader) Platform dependend code examples: CANDRV CAN_CCP.C Platform specific code examples Interface to FLASH and EEPROM programming Interface to Vector embedded CAN Drivers)
    2020-07-02 07:40:02下载
    积分:1
  • Emulator
    驱动层抓取网卡数据代码,并可以修改数据包内容(Crawl layer data-driven card code, and can modify the contents of data packets)
    2009-04-01 00:06:26下载
    积分:1
  • heneita
    手机上经常看到的河内塔的游戏,大学空闲之时使用C 实现,现在发出来和大家共享(Cell phone tower in Hanoi, often see the game, the University of idle time when the use of C to achieve, and now to come and share issue)
    2008-06-22 09:46:59下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载