【问题标题】:rapidminer process in java codejava代码中的rapidminer进程
【发布时间】:2015-10-06 21:55:22
【问题描述】:

我正在使用 rapidminer 进行情绪分析,现在我想使用 rapidminer api 将我的 rapidminer 结果转换为 java 代码。请帮助我解决这个问题,我已经陷入使用 .rmp 文件的过程中。

我在其中使用了预处理任务我使用了文档处理操作 其中还包含其他四个子过程,如标记化、按长度过滤标记、词干和过滤停用词。 在此输入代码

this is my rapidminer xml code and its result: 
------------------------------------------------------------------------

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<process version="5.3.000">
  <context>
    <input/>
    <output/>
    <macros/>
  </context>
  <operator activated="true" class="process" compatibility="5.3.000" expanded="true" name="Process">
    <process expanded="true" height="636" width="668">
      <operator activated="true" class="text:process_document_from_file" compatibility="5.3.002" expanded="true" height="76" name="Process Documents from Files" width="90" x="112" y="30">
        <list key="text_directories">
          <parameter key="negative" value="F:\fOR_FINAL_EXAM\dataset\for_database\Apex AD2600 Progressive-scan DVD player"/>
          <parameter key="positive" value="F:\fOR_FINAL_EXAM\dataset\for_database\Canon G3"/>
        </list>
        <parameter key="encoding" value="windows-1253"/>
        <parameter key="prune_method" value="percentual"/>
        <parameter key="prune_above_percent" value="95.0"/>
        <process expanded="true" height="490" width="673">
          <operator activated="true" class="text:tokenize" compatibility="5.3.002" expanded="true" height="60" name="Tokenize" width="90" x="112" y="75"/>
          <operator activated="true" class="text:filter_by_length" compatibility="5.3.002" expanded="true" height="60" name="Filter Tokens (by Length)" width="90" x="216" y="162"/>
          <operator activated="true" class="text:stem_porter" compatibility="5.3.002" expanded="true" height="60" name="Stem (Porter)" width="90" x="292" y="247"/>
          <operator activated="true" class="text:filter_stopwords_english" compatibility="5.3.002" expanded="true" height="60" name="Filter Stopwords (English)" width="90" x="421" y="338"/>
          <connect from_port="document" to_op="Tokenize" to_port="document"/>
          <connect from_op="Tokenize" from_port="document" to_op="Filter Tokens (by Length)" to_port="document"/>
          <connect from_op="Filter Tokens (by Length)" from_port="document" to_op="Stem (Porter)" to_port="document"/>
          <connect from_op="Stem (Porter)" from_port="document" to_op="Filter Stopwords (English)" to_port="document"/>
          <connect from_op="Filter Stopwords (English)" from_port="document" to_port="document 1"/>
          <portSpacing port="source_document" spacing="0"/>
          <portSpacing port="sink_document 1" spacing="0"/>
          <portSpacing port="sink_document 2" spacing="0"/>
        </process>
      </operator>
      <operator activated="true" class="x_validation" compatibility="5.3.000" expanded="true" height="112" name="Validation" width="90" x="313" y="30">
        <process expanded="true" height="472" width="311">
          <operator activated="true" class="support_vector_machine_linear" compatibility="5.3.000" expanded="true" height="76" name="SVM (Linear)" width="90" x="112" y="30"/>
          <operator activated="true" class="k_nn" compatibility="5.3.000" expanded="true" height="76" name="k-NN" width="90" x="112" y="165"/>
          <connect from_port="training" to_op="SVM (Linear)" to_port="training set"/>
          <connect from_op="SVM (Linear)" from_port="model" to_port="model"/>
          <connect from_op="SVM (Linear)" from_port="exampleSet" to_op="k-NN" to_port="training set"/>
          <connect from_op="k-NN" from_port="exampleSet" to_port="through 1"/>
          <portSpacing port="source_training" spacing="0"/>
          <portSpacing port="sink_model" spacing="0"/>
          <portSpacing port="sink_through 1" spacing="0"/>
          <portSpacing port="sink_through 2" spacing="0"/>
        </process>
        <process expanded="true" height="472" width="311">
          <operator activated="true" class="apply_model" compatibility="5.3.000" expanded="true" height="76" name="Apply Model" width="90" x="51" y="56">
            <list key="application_parameters"/>
          </operator>
          <operator activated="true" class="performance" compatibility="5.3.000" expanded="true" height="76" name="Performance" width="90" x="99" y="165"/>
          <connect from_port="model" to_op="Apply Model" to_port="model"/>
          <connect from_port="test set" to_op="Apply Model" to_port="unlabelled data"/>
          <connect from_op="Apply Model" from_port="labelled data" to_op="Performance" to_port="labelled data"/>
          <connect from_op="Performance" from_port="performance" to_port="averagable 1"/>
          <portSpacing port="source_model" spacing="0"/>
          <portSpacing port="source_test set" spacing="0"/>
          <portSpacing port="source_through 1" spacing="0"/>
          <portSpacing port="source_through 2" spacing="0"/>
          <portSpacing port="sink_averagable 1" spacing="0"/>
          <portSpacing port="sink_averagable 2" spacing="0"/>
        </process>
      </operator>
      <operator activated="false" class="store" compatibility="5.3.000" expanded="true" height="60" name="Store" width="90" x="447" y="165">
        <parameter key="repository_entry" value="store"/>
      </operator>
      <operator activated="true" class="store" compatibility="5.3.000" expanded="true" height="60" name="Store (3)" width="90" x="112" y="300">
        <parameter key="repository_entry" value="data"/>
      </operator>
      <connect from_op="Process Documents from Files" from_port="example set" to_op="Validation" to_port="training"/>
      <connect from_op="Process Documents from Files" from_port="word list" to_op="Store (3)" to_port="input"/>
      <connect from_op="Validation" from_port="model" to_port="result 1"/>
      <connect from_op="Validation" from_port="averagable 1" to_port="result 2"/>
      <portSpacing port="source_input 1" spacing="0"/>
      <portSpacing port="sink_result 1" spacing="0"/>
      <portSpacing port="sink_result 2" spacing="0"/>
      <portSpacing port="sink_result 3" spacing="0"/>
    </process>
  </operator>
</process>

enter image description here]

这是我的 rapidminer 结果。如图所示,我想在我的 java 代码中得到这个结果

【问题讨论】:

  • 那么,您要的是 Java 代码吗?
  • 是的,我要求java代码
  • 那么您不太可能在这里为您完成完整的代码。 SO 是为了解决问题,而不是do this for me
  • 我不想要完整的代码,我只是想要一些代码或链接来帮助我在 java 中构建这段代码。

标签: java rapidminer


【解决方案1】:

快速搜索 SO 会发现 this。或许你可以以此为基础?

【讨论】:

  • 非常感谢你的回复我已经看过这个例子了..我需要适当的工作例子
猜你喜欢
  • 2016-09-04
  • 1970-01-01
  • 1970-01-01
  • 2014-05-07
  • 2013-03-27
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多