首页 \ 问答 \ java用于医疗诊断和数据挖掘的开源项目[已关闭](java Open source projects for medical diagnose & data mining [closed])

java用于医疗诊断和数据挖掘的开源项目[已关闭](java Open source projects for medical diagnose & data mining [closed])

我正在寻找一些用于医疗疾病诊断的OS Java引擎。 这些引擎会根据用户描述患者症状的需求提供查询输入,并且引擎应根据输入症状返回潜在疾病的建议。

这种引擎是否存在? 如果存在一些,我更喜欢这个领域的一些Java OS引擎。 任何建议或想法?

谢谢


I'm looking for some OS java engines for medical diseases diagnose . these are engines that takes queries input from user discribing patient symptoms and the engine should return suggestions of potential disease according to input symptoms.

does such engines exists somewhere? I prefer some Java OS engine in this field if there exists some. any suggestions or Ideas?

thanks


原文:https://stackoverflow.com/questions/8014957
更新时间:2022-09-24 15:09

最满意答案

1)它实际上并没有加载TS文件。 因为您正在生成源映射,所以浏览器知道如何建立连接,这反过来又使您更容易开发。

2)我会看看Ionic框架并模仿他们使用Browserify做的很多事情。 我用它来构建我的前端。 它将所有JS合并到一个文件中,如果你告诉它做一个发布版本,那么就缩小一切。 就像Madhu说的那样,它使用了Gulp。


1) It's not actually loading the TS files. Because you are generating the Source Maps, the browser knows how to make the connections, which in turn makes it easier for you developing.

2) I would look at the Ionic framework and mimic a lot of what they do with Browserify. I'm using it to build out my Frontend. It consolidates all the JS into one file, and if you tell it to do a release build, minifies and everything. It uses Gulp, like Madhu said.

相关问答

更多
  • 我发现你的代码存在两个问题。 一个是你正在使用一个包,但你的代码忽略了这一点。 其次,您没有从模块中获取Sensor类,而是从全局空间获取它。 在由tsc生成的代码中,对System.register的调用对于第一个参数具有"sensor" ,这意味着您正在处理bundle。 这种调用硬编码模块名称,这里的模块名称是"sensor" 。 SystemJS软件包可以加载一个script元素,因此您可以在加载SystemJS后添加它: ...
  • 如果您访问SystemJS Github页面,您将看到该工具的描述: 通用动态模块加载器 - 在浏览器和NodeJS中加载ES6模块,AMD,CommonJS和全局脚本。 因为您在TypeScript或ES6中使用模块,所以需要一个模块装载器。 在SystemJS的情况下, systemjs.config.js允许我们配置模块名称与其对应文件匹配的方式。 如果您明确地使用它来导入应用程序的主模块,则需要配置文件(和SystemJS):