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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tddtinducer.java

?? java數據挖掘算法
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
   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.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品视频在线观看网站| 丁香婷婷综合激情五月色| 一区二区三区美女视频| 国产精品久久久久婷婷二区次| 久久久午夜精品理论片中文字幕| 日韩一区二区不卡| 日韩三级在线观看| 精品国产制服丝袜高跟| 日韩视频在线你懂得| 日韩欧美二区三区| 欧美videossexotv100| 久久婷婷综合激情| 国产精品欧美久久久久无广告| 国产蜜臀97一区二区三区| 国产欧美一区二区精品婷婷| 中文字幕二三区不卡| 亚洲欧洲av一区二区三区久久| 亚洲欧美精品午睡沙发| 国产精品国产三级国产专播品爱网| 久久久蜜桃精品| 日韩一区在线看| 亚洲第一主播视频| 精品在线免费观看| 极品少妇xxxx偷拍精品少妇| 国产高清在线精品| thepron国产精品| 欧美吻胸吃奶大尺度电影| 欧美丰满一区二区免费视频 | 欧美一区二区播放| 精品成人在线观看| 国产精品萝li| 午夜视频在线观看一区| 精品一区二区三区的国产在线播放| 国产精品一区二区免费不卡| 不卡的看片网站| 4438x成人网最大色成网站| 精品国产一区二区三区不卡| 美女一区二区在线观看| 国产一区二三区| 一本久久综合亚洲鲁鲁五月天| 欧美一级免费大片| 国产精品国产三级国产aⅴ中文| 亚洲国产日韩一区二区| 久久99精品视频| 91香蕉国产在线观看软件| 欧美一区二区视频在线观看| 久久久久久麻豆| 亚洲一区二区高清| 国产成人啪免费观看软件| 欧美性猛交xxxxxxxx| 久久亚洲免费视频| 亚洲主播在线观看| 国产精品911| 欧美美女一区二区| 亚洲欧洲精品成人久久奇米网| 奇米影视一区二区三区| 97se亚洲国产综合在线| 欧美刺激脚交jootjob| 亚洲精品视频免费看| 国内久久精品视频| 欧美体内she精视频| 久久久久久久网| 日韩精品每日更新| 91福利国产成人精品照片| 精品福利一区二区三区免费视频| 玉足女爽爽91| 成人午夜在线视频| 精品国产百合女同互慰| 亚洲成人久久影院| av网站免费线看精品| 久久久一区二区三区捆绑**| 天天综合网天天综合色| 99精品欧美一区| 93久久精品日日躁夜夜躁欧美| 欧美日本在线一区| 免费国产亚洲视频| 欧美午夜一区二区三区免费大片| 综合欧美亚洲日本| 91免费视频网| 亚洲欧美成aⅴ人在线观看| 成人午夜视频网站| 一区在线中文字幕| 成人午夜短视频| 国产日产欧产精品推荐色 | 制服丝袜在线91| 亚洲免费在线视频| av在线不卡免费看| 中文字幕乱码久久午夜不卡| 久久国产精品第一页| 欧美日韩高清一区二区三区| 亚洲精品免费电影| 色婷婷综合久色| 亚洲欧洲精品一区二区三区不卡| 成人综合在线视频| 欧美国产精品久久| 国产91清纯白嫩初高中在线观看| 精品入口麻豆88视频| 蜜桃视频一区二区三区在线观看| 欧美精品1区2区3区| 丝袜诱惑制服诱惑色一区在线观看 | 日本一区二区三区免费乱视频| 精品系列免费在线观看| 日韩女优av电影| 国产在线播放一区二区三区| 欧美va亚洲va国产综合| 精品一区二区免费看| 精品捆绑美女sm三区| 国产在线精品一区二区| 久久亚洲私人国产精品va媚药| 国产精品亚洲一区二区三区在线| 日韩欧美高清dvd碟片| 激情综合亚洲精品| 国产日韩欧美精品一区| 粉嫩av一区二区三区粉嫩| 国产精品私人自拍| 91同城在线观看| 亚洲精品乱码久久久久久| 欧美日韩国产综合草草| 美洲天堂一区二卡三卡四卡视频 | 国产亚洲欧洲997久久综合 | 91精品福利在线| 五月天一区二区三区| 欧美一区二区成人6969| 狠狠色丁香婷综合久久| 欧美国产日韩精品免费观看| 色综合久久综合| 三级久久三级久久| 2023国产精品| 97超碰欧美中文字幕| 香蕉影视欧美成人| 日韩美女一区二区三区四区| 国产精品911| 有码一区二区三区| 7777精品伊人久久久大香线蕉超级流畅| 欧美日韩国产成人在线91| 欧美在线观看视频一区二区三区 | 国产成人精品免费一区二区| 久久精品国产999大香线蕉| 天堂成人国产精品一区| 日韩毛片高清在线播放| 日本一区二区动态图| 国产精品萝li| 亚洲最快最全在线视频| 亚洲综合色婷婷| 午夜精品福利在线| 福利视频网站一区二区三区| 色哟哟日韩精品| 麻豆一区二区三| 国产精品国产三级国产aⅴ无密码| 欧美性生活久久| 国模一区二区三区白浆| 亚洲欧美国产高清| 日韩精品自拍偷拍| 91在线丨porny丨国产| 麻豆精品视频在线观看视频| 亚洲三级理论片| 久久嫩草精品久久久精品一| 欧美亚洲国产bt| 高清日韩电视剧大全免费| 午夜精品一区在线观看| 国产欧美日韩激情| 日韩一卡二卡三卡四卡| 色综合久久久久综合99| 国产毛片精品视频| 五月天久久比比资源色| 中文字幕一区二区三区四区 | 国产精品欧美经典| 日韩一级成人av| 一本在线高清不卡dvd| 精品亚洲aⅴ乱码一区二区三区| 亚洲影视在线播放| 中文字幕制服丝袜成人av| 日韩精品一区二区三区在线播放 | 91精品国产高清一区二区三区蜜臀| 粉嫩av一区二区三区在线播放| 蜜桃免费网站一区二区三区| 亚洲日本在线看| 国产欧美一区在线| 欧美成人vps| 欧美一区二区三区电影| 欧美亚洲图片小说| 99久久99精品久久久久久 | 欧美一二三四区在线| 日本韩国精品在线| jiyouzz国产精品久久| 韩日精品视频一区| 久久精品噜噜噜成人88aⅴ| 亚洲国产精品久久人人爱| 亚洲三级电影网站| 国产精品久久久久永久免费观看| 久久久久一区二区三区四区| 日韩一卡二卡三卡| 日韩一区二区不卡| 欧美一级视频精品观看| 91精品国产综合久久久蜜臀图片| 欧美三级在线视频| 欧美三日本三级三级在线播放| 色久综合一二码| 日本道在线观看一区二区| 色综合久久中文综合久久97|