登录
首页 » Java » KeyExtract_java

KeyExtract_java

于 2019-05-19 发布
0 228
下载积分: 1 下载次数: 2

代码说明:

说明:  中科院的研究的关键词提取技术,能够进行文章的分词和关键词提取(Keyword extraction technology for research in the Chinese Academy of Sciences, capable of article segmentation and keyword extraction)

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

发表评论

0 个回复

  • DNF团圆内部自动搬砖.rar
    开启:先辅助,后打开wegame 跳过检测,进角色自动呼出! F1———全屏开关 End———挂机模式 F2处理装备 F3自动完成已接任务 波浪键~~~无形秒杀 F4———处理装备(出售或分解白蓝紫) F5一键挑战 F1——自动刷图(在桌面配置调整自动模式以及伤害频率,通关时间30秒以上!通过伤害高低控制通关时间!)(Opening: first assist, then open wegame to skip detection, and play the role automatically exhaling! F1 - full screen switch End - - hang machine mode F2 processing equipment F3 automatically completes the connected task Wave key ~ ~ invisible second kill F4 -- handling equipment (selling or decomposing Bai Lanzi) F5 key challenge F1 - automatic brush drawing (automatic adjustment mode and frequency of damage in the desktop configuration, clearance time more than 30 seconds! Control the clearance time through the damage level!)
    2018-06-11 12:40:42下载
    积分:1
  • DRWRClientV2.0_BETA
    java试题,供java程序员检查自己的学习成果。班门弄斧,主要为了下载一些好的程序(java test)
    2009-02-13 11:11:34下载
    积分:1
  • BreadthFirstSearch
    Tried to implement BFS in java
    2015-04-20 11:50:57下载
    积分:1
  • restrant
    这是一个校园的网页点餐系统,开发平台为J2EE.开发语言是Java,将项目部署至MyEclipse上即可。(This is a campus web ordering system, development platform for J2EE. Development language is Java, will deploy the project to the MyEclipse can.)
    2020-12-21 18:09:08下载
    积分:1
  • shuzhifenxi
    二分法,数值分析实现方程求根的算法,这是java程序(Dichotomy, numerical analysis algorithms to achieve Roots of the equation, which is the java program)
    2013-12-13 12:45:31下载
    积分:1
  • lab4Plus
      1、Struts2框架下ActionSupport的使用(附加) 在Myeclipse中新建web项目lab4plus; 在实验四的基础上修改LoginAction,使之继承ActionSupport,并重写Validate方法,在其中增加FieldError、ActionError和ActionMessage; 修改login.jsp、loginSuccess.jsp和loginFail.jsp页面,用<s:actionmessage>和<s:actionerror>标签输出信息; 将lab4plus布署在Tomcat服务器上; 运行login.jsp页面,并记录运行结果、主要处理流程与关键代码。(, Struts2 framework ActionSupport use (additional) Create a new web project in Myeclipse lab4plus In the experiment on the basis of four modified LoginAction, so inheritance ActionSupport, and override the Validate method, in which the increase FieldError, ActionError and ActionMessage Modify login.jsp, loginSuccess.jsp and loginFail.jsp page with <s:actionmessage> and <s:actionerror> tag output information The lab4plus deployed on Tomcat server Run login.jsp page and record the results, the main processes and key code. )
    2013-11-14 15:11:53下载
    积分:1
  • viterbi
    说明:  用java实现viterbi算法,由动态规划的方法来寻找出现概率最大的隐藏状态序列
    2010-04-28 21:11:21下载
    积分:1
  • mapMatching
    地图匹配,用于将GPS轨迹匹配到地图上的道路上,可以实时导航。(Map matching for matching the GPS track to the road map, real-time navigation.)
    2020-07-23 22:38:45下载
    积分:1
  • weblogic基本概念
    WebLogic 应用服务器有如下几个基本概念:  Domain: 域是个逻辑概念,用来组织管理一系列的应用服务器实例,也就是下面要解释的server. 域是WebLogic应用服务器中最大的概念,WebLogic应用服务器启动的时候就是以某个域来启动的,它有一个中心配置文件叫config.xml. A domain is the basic administration unit for WebLogic Server instances (servers) that is represented in its own configuration file (config.xml). A domain consists of one or more servers (and their associated resources) that you manage with a single Administration Server. Cluster: 族也是一个逻辑概念,用来分组用途相同的服务器实例,一个域中可以有多个族。 A cluster is a deployment in which multiple WebLogic Server instances (servers) run simultaneously and work together to provide increased scalability and reliability. A cluster appears to clients to be a single WebLogic Server instance. The servers that constitute a cluster can run on the same machine, or be located on different machines. Machine: 机器是物理上的概念,代表一台运行WebLogic应用服务器的实在的机器,包括其IP地址等信息。一个域中可以包括多台机器。(同一台机器可以属于不同的域吗?) A machine is the logical representation of the computer that hosts one or more WebLogic Server instances (servers). WebLogic Server uses configured machine names to determine the optimum server in a cluster to which certain tasks, such as HTTP session replication, are delegated. The Administration Server uses the machine definition in conjunction with the Node Manager application to start remote servers. Server: 服务器,也就是一个应用服务器的实例,用来部署和运行各种J2EE应用程序,也可以来配置各种服务程序。它是WebLogic应用服务器的基本服务单元。一个WebLogic域中一般有一个管理服务器和多个被管理服务器。也就是下面我们要谈到的两个概念。  A server is an instance of WebLogic Server that runs in its own Java Virtual Machine (JVM) and has its own configuration. Each WebLogic Server domain must have one server that acts as the Administration Server. In a typical production environment, the Administration Server is where the Administration Console is run and used to perform administrative tasks. By default, the Administration Server is called myserver. A typical production environment may also have one or more Managed Servers, which are instances of WebLogic Server used to host enterprise applications. Administrative Server: 管理服务器是用来管理配置域的中心点,一般来说,管理服务器上是不部署应用程序的,而是用来统一管理、配置、监控被管理服务器以及部署应用程序到被管理服务器上。一个域中有一台管理服务器。 Managed Server: 被管理服务器是用来部署运行各种应用程序的。一个域中有一台或多台被管理服务器。 Node Manager: 节点管理器是一个单独运行的后台程序,一般运行在被管理服务器的机器上,用来提供远程启动和停止服务器(Server)的功能。
    2014-02-28下载
    积分:1
  • jAva
    这是一个关于JAVA基础知识的介绍,如果你是一个学习JAVA的新手,它是非常适合你的。 (primary konwledge about java, if you fresh-man who want to learn java you should have a look at it,please bleive in me)
    2012-04-28 22:27:10下载
    积分:1
  • 696516资源总数
  • 106459会员总数
  • 0今日下载