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

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

?? tddtinducer.java

?? Decision Tree 決策樹算法ID3 數據挖掘 分類
?? 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一区二区三区免费野_久草精品视频
国产亚洲综合色| 成人午夜激情影院| 欧美最猛性xxxxx直播| 国产人伦精品一区二区| 成人av在线资源网站| 亚洲视频 欧洲视频| 欧美亚洲高清一区二区三区不卡| 亚洲成人在线观看视频| 欧美一级日韩不卡播放免费| 精品一区二区三区久久久| 久久精品亚洲国产奇米99| 久久亚洲私人国产精品va媚药| 不卡一区二区三区四区| 成人av资源站| 欧美亚洲愉拍一区二区| 欧美四级电影网| 日韩美女一区二区三区四区| 粉嫩绯色av一区二区在线观看| 天天综合色天天综合色h| 中文字幕精品—区二区四季| 日韩视频一区在线观看| 色婷婷综合久久久| 国产精品66部| 热久久一区二区| 亚洲另类春色国产| 2020国产精品自拍| 18涩涩午夜精品.www| 精品国产三级a在线观看| 欧美三级三级三级爽爽爽| 成人精品视频一区二区三区尤物| 97se亚洲国产综合自在线| 国产乱码精品一区二区三区av| 9色porny自拍视频一区二区| 国产精品1024| 国产激情偷乱视频一区二区三区| 99视频在线观看一区三区| 欧美一级欧美三级| 国产精品乱码人人做人人爱| 国产视频视频一区| 夜夜精品视频一区二区| 亚洲欧洲日产国码二区| 免费成人av在线| 成人国产在线观看| 3751色影院一区二区三区| 欧洲av在线精品| 久久久久成人黄色影片| 亚洲国产激情av| 日韩电影在线一区二区三区| 五月综合激情婷婷六月色窝| 国产精品自拍网站| 日韩一区二区三区视频| 亚洲欧美日韩电影| 亚洲专区一二三| 亚洲一区二区三区在线播放| 国产一区二区成人久久免费影院 | 精品少妇一区二区三区日产乱码| 在线播放91灌醉迷j高跟美女| 欧美色区777第一页| 国产精品视频一二三区| 久久99精品国产麻豆婷婷| 在线观看欧美日本| 国产精品美女久久久久av爽李琼| 国产在线精品不卡| 欧美成人激情免费网| 天堂一区二区在线免费观看| 日本午夜精品视频在线观看| 欧洲在线/亚洲| 亚洲人妖av一区二区| 东方aⅴ免费观看久久av| 精品国产乱码久久久久久1区2区| 亚洲va天堂va国产va久| 欧美综合亚洲图片综合区| 亚洲精品午夜久久久| 91蝌蚪国产九色| 欧美一级黄色片| 免费在线观看不卡| 91精品国产入口在线| 亚洲综合免费观看高清在线观看| 成人精品一区二区三区四区| 中文字幕亚洲视频| 99riav一区二区三区| 亚洲天堂精品在线观看| 成人av网站免费观看| 一区在线播放视频| 91在线小视频| 亚洲国产乱码最新视频 | 日韩精品专区在线影院观看| 日本免费在线视频不卡一不卡二| 欧美男人的天堂一二区| 国产亚洲女人久久久久毛片| 国产伦精品一区二区三区免费迷 | 99精品偷自拍| 樱桃视频在线观看一区| 欧美性色aⅴ视频一区日韩精品| 一级做a爱片久久| 欧美日韩精品一区二区| 久久国产精品第一页| 一本久道中文字幕精品亚洲嫩| 一区二区三区四区高清精品免费观看| 色婷婷综合激情| 日本va欧美va精品| 欧美韩国日本综合| 色综合久久88色综合天天 | 欧美大度的电影原声| 国产精品一区一区| 亚洲精品国产无天堂网2021| 欧美老女人第四色| 国产乱妇无码大片在线观看| 亚洲品质自拍视频| 日韩区在线观看| 成人精品亚洲人成在线| 亚洲电影在线免费观看| 26uuu成人网一区二区三区| 99精品在线观看视频| 青青草原综合久久大伊人精品 | 日韩精品一区二区三区四区视频| 国产精品系列在线播放| 亚洲三级久久久| 日韩欧美国产午夜精品| 日本丰满少妇一区二区三区| 国产亚洲一区二区在线观看| 91福利精品视频| 国产成人综合视频| 三级欧美在线一区| 1024国产精品| 久久久噜噜噜久久人人看 | 国产精品1区2区3区在线观看| 亚洲色图色小说| 2020国产精品自拍| 欧美一级在线视频| 色婷婷久久一区二区三区麻豆| 黄色日韩三级电影| 久久中文娱乐网| 欧美一区二区久久| 欧美色国产精品| 欧美综合天天夜夜久久| 成人性生交大片免费看中文| 国内精品国产成人国产三级粉色| 婷婷成人激情在线网| 一区二区免费在线播放| 亚洲日本丝袜连裤袜办公室| 亚洲欧洲成人自拍| 欧美国产精品中文字幕| 久久精品视频免费| 精品对白一区国产伦| 8x8x8国产精品| 欧美日韩国产大片| 欧美人妇做爰xxxⅹ性高电影| 91亚洲午夜精品久久久久久| 国产成a人无v码亚洲福利| 蜜桃视频第一区免费观看| 国产日韩成人精品| 久久美女艺术照精彩视频福利播放 | 亚洲国产成人自拍| 国产欧美一区二区在线观看| 久久久久久久久久久久久女国产乱 | 亚洲国产综合在线| 亚洲综合一二三区| 亚洲成人黄色小说| 亚洲一级不卡视频| 亚洲国产日日夜夜| 亚洲成av人片| 奇米精品一区二区三区在线观看 | 秋霞国产午夜精品免费视频| 日韩专区中文字幕一区二区| 琪琪久久久久日韩精品| 天天做天天摸天天爽国产一区| 日韩 欧美一区二区三区| 老司机午夜精品99久久| 久久99精品国产麻豆婷婷| 国产一区二区久久| 97se亚洲国产综合自在线| 欧美色综合影院| 日韩视频免费直播| 欧美哺乳videos| 国产精品久久久久久久久免费樱桃| 欧美丰满嫩嫩电影| 精品国一区二区三区| 国产精品丝袜一区| 国产精品福利一区| 亚洲成人动漫精品| 精品在线视频一区| 理论电影国产精品| 成人午夜看片网址| 91麻豆精品91久久久久同性| 欧美视频在线播放| 欧美中文字幕一区| 日韩一区二区精品在线观看| 日韩亚洲欧美综合| 综合久久综合久久| 性感美女久久精品| 国产麻豆精品在线观看| 99久久精品免费| 91精品国产综合久久蜜臀| 日本一区二区动态图| 三级欧美在线一区| 日本福利一区二区| 久久久亚洲精品一区二区三区| 亚洲国产一区二区三区| 高清不卡一区二区在线|