亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? tddtinducer.java

?? 用C編寫的數(shù)據(jù)挖掘的相關(guān)算法
?? JAVA
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
   cgraph = aCgraph; // save this until we actually construct the tree.
   decisionTreeCat = null;
   totalInstWeight = -1; // illegal value.

   // this is arbitrary - no schema yet
   haveContinuousAttributes = false;

   tddtOptions.maxLevel = DEFAULT_MAX_LEVEL;
   tddtOptions.lowerBoundMinSplitWeight = DEFAULT_LB_MSW;
   tddtOptions.upperBoundMinSplitWeight = DEFAULT_UB_MSW;
   tddtOptions.minSplitWeightPercent = DEFAULT_MS_WP;
   tddtOptions.nominalLBoundOnly = DEFAULT_NOM_LBO;
   tddtOptions.debug = DEFAULT_DEBUG;
   tddtOptions.unknownEdges = DEFAULT_UNKNOWN_EDGES;
   tddtOptions.splitScoreCriterion =  SplitScore.defaultSplitScoreCriterion;
   tddtOptions.emptyNodeParentDist = DEFAULT_EMPTY_NODE_PARENT_DIST;
   tddtOptions.parentTieBreaking = DEFAULT_PARENT_TIE_BREAKING;
   tddtOptions.pruningMethod = DEFAULT_PRUNING_METHOD;
   tddtOptions.pruningBranchReplacement = DEFAULT_PRUNING_BRANCH_REPLACEMENT;
   tddtOptions.adjustThresholds = DEFAULT_ADJUST_THRESHOLDS;
   tddtOptions.pruningFactor = DEFAULT_PRUNING_FACTOR;
   tddtOptions.contMDLAdjust = DEFAULT_CONT_MDL_ADJUST;
   tddtOptions.smoothInst = DEFAULT_SMOOTH_INST;
   tddtOptions.smoothFactor = DEFAULT_SMOOTH_FACTOR;
   tddtOptions.leafDistType = defaultLeafDistType;
   tddtOptions.MEstimateFactor = DEFAULT_LEAF_M_ESTIMATE_FACTOR;
   tddtOptions.evidenceFactor = DEFAULT_LEAF_EVIDENCE_FACTOR;
   tddtOptions.evaluationMetric = DEFAULT_EVALUATION_METRIC;
}

   /** Copy constructor.
    * @param source	The TDDTInducer that is being copied.
    */
   public TDDTInducer(TDDTInducer source)
   {
      super(source);
      cgraph = null;
      decisionTreeCat = null;
      set_level(source.get_level());
      copy_options(source);
      set_total_inst_weight(source.get_total_inst_weight());

      haveContinuousAttributes = source.haveContinuousAttributes;
   }

   /** Sets the level of this TDDTInducer.
    * @param lvl The level to be set.
    */
   public void set_level(int lvl) { level = lvl;}

   /** Returns the level set for this TDDTInducer.
    * @return This TDDTInducer's level setting.
    */
   public int get_level() {return level;}

   /** Sets the total weight of instances in the data set this inducer is currently
    * using.
    * @param wt	The weight that should be set.
    */
   protected void set_total_inst_weight(double wt){ totalInstWeight = wt;}

   /** Returns the total weight of instances in the data set this inducer is using.
    * @return The weight of the instances.
    */
   protected double get_total_inst_weight(){ return totalInstWeight;}

   /** Returns the maximum level which may be set for a TDDTInducer.
    * @return The maximum weight of instances.
    */
   public int get_max_level(){return tddtOptions.maxLevel;}

   /** Sets the maximum level for a TDDTInducer.
    * @param level The new maximum level.
    */
   public void set_max_level(int level){tddtOptions.maxLevel = level;}

   /** Sets the lower bound for minimum split weight.
    * @param val The new lower bound.
    */
   public void set_lower_bound_min_split_weight(double val)
      {  tddtOptions.lowerBoundMinSplitWeight = val; }

   /** Returns the lower bound for minimum split weight.
    * @return The lower bound for minimum split weight.
    */
   public double get_lower_bound_min_split_weight()
      {  return tddtOptions.lowerBoundMinSplitWeight; }

   /** Sets the upper bound for minimum split weight.
    * @param val The new upper bound.
    */
   public void set_upper_bound_min_split_weight(double val)
      {   tddtOptions.upperBoundMinSplitWeight = val; }

   /** Returns the upper bound for minimum split weight.
    * @return The upper bound for minimum split weight.
    */
   public double get_upper_bound_min_split_weight()
      {   return tddtOptions.upperBoundMinSplitWeight; }

   /** Sets a new percentage value for minimum split weight.
    * @param val The new percentage.
    */
   public void set_min_split_weight_percent(double val)
      {   tddtOptions.minSplitWeightPercent = val; }

   /** Returns the percentage value for minimum split weight.
    * @return The percentage value for minimum split weight.
    */
   public double get_min_split_weight_percent()
      {   return tddtOptions.minSplitWeightPercent; }

   /** Sets which lower bounds are used for nominal attributes. TRUE indicates
    * lowerBoundMinSplitWeight, upperBoundMinSplitWeight, and minSplitWeightPercent
    * are not used for setting minimum instances in a node for nominal attributes,
    * FALSE indicates they will be used.
    * @param val The value for the boolean option.
    */
   public void set_nominal_lbound_only(boolean val)
      { tddtOptions.nominalLBoundOnly = val; }

   /** Returns TRUE if lower bounds are to be used for nominal values, FALSE otherwise.
    * @return TRUE indicates lowerBoundMinSplitWeight, upperBoundMinSplitWeight, and
    * minSplitWeightPercent are not used for setting minimum instances in a node for
    * nominal attributes, FALSE indicates they will be used.
    */
   public boolean get_nominal_lbound_only() 
      { return tddtOptions.nominalLBoundOnly; }

   /** Sets whether unknown categories are allowable for edges if the decision tree.
    * @param val TRUE if unknown edges are allowable, FALSE otherwise.
    */
   public void set_unknown_edges(boolean val) {tddtOptions.unknownEdges = val;}

   /** Returns whether unknown edges are allowed.
    * @return TRUE if unknown edges are allowable, FALSE otherwise.
    */
   public boolean get_unknown_edges() { return tddtOptions.unknownEdges; }

   /** Return the criterion used for scoring.
    * @return The split score criterion.
    */
   public byte get_split_score_criterion() 
      {return tddtOptions.splitScoreCriterion; }

   /** Sets the criterion used for split scoring.
    * @param val The new split score criterion.
    */
   public void set_split_score_criterion(byte val)
      {tddtOptions.splitScoreCriterion = val; }

   /** Sets whether an empty node should have the parent's distribution.
    * @param b TRUE indicates an empty node should have the parent's distribution,
    * FALSE otherwise.
    */
   public void set_empty_node_parent_dist(boolean b)
      {tddtOptions.emptyNodeParentDist = b; }

   /** Returns whether an empty node should have the parent's distribution.
    * @return TRUE indicates an empty node should have the parent's distribution,
    * FALSE otherwise.
    */
   public boolean get_empty_node_parent_dist()
      {return tddtOptions.emptyNodeParentDist; }

   /** Set the tie breaking order for distribution ties.
    * @param b the new order for breaking distribution ties.
    */
   public void set_parent_tie_breaking(boolean b)
      {tddtOptions.parentTieBreaking = b; }

   /** Get the order for breaking distribution ties.
    * @return Order for breaking distribution ties.
    */
   public boolean get_parent_tie_breaking()
      {return tddtOptions.parentTieBreaking; }

    /** Sets the Pruning method to be used.
     * @param pM The Pruning method to be used. If the value is not NONE and pruning_factor is 0,
     * then a node will be made a leaf when its (potential) children do not improve
     * the error count.
     */
   public void set_pruning_method(byte pM)
      {tddtOptions.pruningMethod = pM; }

   /** Returns the Pruning method to be used.
    * @return The Pruning method used.
    */
   public byte get_pruning_method()
      {return tddtOptions.pruningMethod; }

   /** Sets whether pruning should allow replacing a node with its largest subtree.
    * @param b TRUE indicates pruning should allow replacing a node with its largest subtree,
    * FALSE otherwise.
    */
   public void set_pruning_branch_replacement(boolean b)
      {tddtOptions.pruningBranchReplacement = b; }

   /** Returns whether pruning should allow replacing a node with its largest subtree.
    * @return TRUE indicates pruning should allow replacing a node with its largest subtree,
    * FALSE otherwise.
    */
   public boolean get_pruning_branch_replacement() 
      {return tddtOptions.pruningBranchReplacement; }

   /** Sets whether threshold should be adjusted to equal instance values.
    * @param b TRUE indicates threshold should be adjusted to equal instance values, FALSE otherwise.
    */
   public void set_adjust_thresholds(boolean b)
      {tddtOptions.adjustThresholds = b; }

   /** Returns whether threshold should be adjusted to equal instance values.
    * @return TRUE indicates threshold should be adjusted to equal instance values, FALSE otherwise.
    */
   public boolean get_adjust_thresholds() 
      {return tddtOptions.adjustThresholds; }

   /** Sets the factor of how much pruning should be done.
    * @param val Factor of how much pruning should be done. High values indicate more pruning.
    */
   public void set_pruning_factor(double val)
      { tddtOptions.pruningFactor = val; }

   /** Returns the factor of how much pruning should be done.
    * @return Factor of how much pruning should be done. High values indicate more pruning.
    */
   public double get_pruning_factor() 
      { return tddtOptions.pruningFactor; }

   /** Returns the number of thresholds on either side to use for smoothing.
    * @return Number of thresholds on either side to use for smoothing; 0 for no smoothing.
    */
   public int get_smooth_inst() { return tddtOptions.smoothInst; }

   /** Sets the number of thresholds on either side to use for smoothing.
    * @param inst Number of thresholds on either side to use for smoothing; 0 for no smoothing.
    */
   public void set_smooth_inst(int inst) { tddtOptions.smoothInst = inst; }

   /** Returns the exponential factor for smoothing.
    * @return The exponential factor for smoothing.
    */
   public double get_smooth_factor() { return tddtOptions.smoothFactor; }

    /** Sets the exponential factor for smoothing.
     * @param factor The new exponential factor for smoothing.
     */
   public void set_smooth_factor(double factor) { tddtOptions.smoothFactor = factor; }
			   
   /** Sets whether the Minimum Description Length Adjustment for continuous attributes
    * should be applied to mutual info.
    * @param val TRUE if the Minimum Description Length Adjustment for continuous attributes should be applied to mutual info, FALSE otherwise.
    */
   public void set_cont_mdl_adjust(boolean val)
      { tddtOptions.contMDLAdjust = val; }

   /** Returns whether Minimum Description Length Adjustment for continuous attributes should be applied to mutual info.
    * @return TRUE if the Minimum Description Length Adjustment for continuous attributes should
    *     * be applied to mutual info, FALSE otherwise.
    */
   public boolean get_cont_mdl_adjust() 
      { return tddtOptions.contMDLAdjust; }

   /** Sets the type of distribution to build at leaves.
    * @param type The type of distribution to build at leaves.
    */
   public void set_leaf_dist_type(byte type)
      { tddtOptions.leafDistType = type; }

   /** Returns the type of distribution to build at leaves.
    * @return The type of distribution to build at leaves.
    */
   public byte get_leaf_dist_type() 
      { return tddtOptions.leafDistType; }

   /** Sets the m-estimate factor for laplace.
    * @param factor The new m-estimate factor for laplace.
    */
   public void set_m_estimate_factor(double factor)
      { tddtOptions.MEstimateFactor = factor; }

   /** Returns the m-estimate factor for laplace.
    * @return The m-estimate factor for laplace.
    */
   public double get_m_estimate_factor() { return tddtOptions.MEstimateFactor; }

   /** Sets the evidence correction factor.
    * @param factor The new evidence correction factor.
    */
   public void set_evidence_factor(double factor)
      { tddtOptions.evidenceFactor = factor; }

   /** Returns the evidence correction factor.

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精选在线视频| 久久av中文字幕片| 裸体一区二区三区| 91在线视频播放| 日韩视频免费观看高清完整版 | 偷拍一区二区三区| 成人午夜私人影院| 精品国产伦理网| 亚洲一区日韩精品中文字幕| 国产成人日日夜夜| 日韩午夜电影av| 亚洲制服欧美中文字幕中文字幕| 丁香天五香天堂综合| 精品精品国产高清a毛片牛牛| 亚洲一区二区精品视频| 9久草视频在线视频精品| 久久天天做天天爱综合色| 午夜不卡av在线| 欧美丝袜第三区| 五月综合激情网| 91亚洲国产成人精品一区二三| 久久新电视剧免费观看| 美美哒免费高清在线观看视频一区二区| 日本高清成人免费播放| 欧美色网一区二区| 亚洲欧美日韩电影| 99久久国产综合精品色伊| 国产午夜亚洲精品羞羞网站| 国产原创一区二区三区| 日韩视频免费直播| 久久99精品国产麻豆婷婷| 91精品国产高清一区二区三区| 亚洲国产精品久久人人爱| 在线观看区一区二| 午夜影院在线观看欧美| 欧美一区2区视频在线观看| 视频一区国产视频| 欧美一级午夜免费电影| 蜜臀av性久久久久蜜臀aⅴ四虎| 欧美一区二区三区性视频| 美女任你摸久久| 久久蜜桃av一区精品变态类天堂| 国产乱码精品1区2区3区| 久久午夜电影网| 亚洲在线观看免费视频| 日韩精品一区二区在线| 久久久久一区二区三区四区| 久久99国产精品麻豆| 久久亚洲捆绑美女| 成人一级黄色片| 亚洲美女在线一区| 欧美精品在线一区二区| 美女在线视频一区| 国产精品丝袜黑色高跟| 欧美在线免费观看视频| 蜜臀av性久久久久蜜臀aⅴ流畅| 久久中文娱乐网| 成人av电影在线网| 一区二区三区四区视频精品免费| 欧美高清dvd| 国产成人综合视频| 亚洲一区在线观看免费观看电影高清| 91精品国产全国免费观看 | 国产精品 欧美精品| 国产精品热久久久久夜色精品三区| 91丨九色丨蝌蚪丨老版| 同产精品九九九| 亚洲成人你懂的| 久久精品亚洲一区二区三区浴池| 91欧美一区二区| 日本不卡中文字幕| 国产精品丝袜在线| 91精品国产91综合久久蜜臀| 高清shemale亚洲人妖| 一区二区视频在线看| 久久午夜电影网| 欧美日韩一级黄| 成人午夜短视频| 蜜臀91精品一区二区三区| 亚洲色图欧美激情| 日韩久久久精品| 中文字幕在线不卡视频| 欧美日韩精品三区| 国产高清视频一区| 亚洲综合一二三区| 国产精品视频在线看| 91精品国产一区二区人妖| 99re热这里只有精品免费视频| 毛片不卡一区二区| 夜夜精品视频一区二区| 中文字幕不卡一区| 精品久久久久久久人人人人传媒 | 看电影不卡的网站| 亚洲成人动漫av| 中文字幕日韩一区| 国产日韩v精品一区二区| 日韩手机在线导航| 91精品久久久久久久91蜜桃| 91美女精品福利| 国产一区二区视频在线播放| 国产精品网站导航| 一区二区三区**美女毛片| 亚洲精品在线电影| 日韩一区二区三区免费看| 欧洲精品一区二区三区在线观看| 成人午夜精品在线| 懂色av一区二区夜夜嗨| 国产大片一区二区| 国产一区二区精品久久91| 国产一区二区伦理| 国产成人在线色| 成人av网站大全| 91在线精品秘密一区二区| av成人动漫在线观看| 成人av在线播放网址| 波多野洁衣一区| av在线不卡电影| 99在线视频精品| 91香蕉国产在线观看软件| 99久久久精品| 欧美在线观看视频一区二区| 色综合久久综合网97色综合| 色综合久久88色综合天天| 色综合久久中文字幕| 欧美亚洲综合色| 欧美一区二区在线观看| 精品欧美一区二区三区精品久久| 久久综合五月天婷婷伊人| 久久久欧美精品sm网站| 亚洲国产精品黑人久久久| 成人欧美一区二区三区视频网页 | 在线亚洲人成电影网站色www| 99久久婷婷国产精品综合| 色八戒一区二区三区| 在线不卡免费欧美| 日韩免费成人网| 日本一区二区免费在线| 亚洲色图第一区| 视频一区中文字幕| 国产精品自拍在线| 不卡的电影网站| 欧美麻豆精品久久久久久| 日韩欧美一级二级三级久久久| 久久久欧美精品sm网站| 亚洲啪啪综合av一区二区三区| 三级在线观看一区二区 | 日本成人在线不卡视频| 国产电影一区二区三区| 91色婷婷久久久久合中文| 欧美视频精品在线| 久久综合给合久久狠狠狠97色69| 国产精品视频yy9299一区| 亚洲一区在线视频| 国产综合色产在线精品| 91豆麻精品91久久久久久| 欧美一卡二卡三卡| 自拍偷拍亚洲欧美日韩| 美女性感视频久久| 日本精品一区二区三区高清| 日韩视频永久免费| 一级女性全黄久久生活片免费| 精品一区二区三区欧美| 日本高清不卡视频| 亚洲国产岛国毛片在线| 亚洲成av人片一区二区梦乃| 国产成人精品一区二区三区网站观看 | 午夜伦理一区二区| eeuss鲁一区二区三区| 日韩免费在线观看| 亚洲一区成人在线| 成人高清免费在线播放| 精品国产髙清在线看国产毛片| 一区二区三区四区在线| 成人免费av网站| 久久久欧美精品sm网站| 久久99热狠狠色一区二区| 欧美日韩国产一级| 一区二区三区精品视频| www.激情成人| 国产欧美日韩在线| 国产一区二区三区国产| 337p亚洲精品色噜噜狠狠| 亚洲欧美电影院| a4yy欧美一区二区三区| 中文字幕乱码亚洲精品一区| 久久se精品一区二区| 欧美一区二区三区成人| 五月激情综合婷婷| 欧美日韩aaaaaa| 午夜影院久久久| 欧美日韩在线播| 亚洲韩国精品一区| 欧美老人xxxx18| 无码av免费一区二区三区试看| 欧美三区在线观看| 午夜视频在线观看一区二区| 91久久精品一区二区二区| 亚洲精品日韩一| 在线观看成人免费视频| 午夜影视日本亚洲欧洲精品|