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

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

?? tddtinducer.java

?? 數(shù)據(jù)倉庫挖掘與開發(fā) ID3算法實(shí)現(xiàn)代碼
?? 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.

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美网站一区二区| 成人欧美一区二区三区视频网页| 日韩欧美123| 国产精品久久久久久久久晋中| 蜜桃视频一区二区三区在线观看| 精品一区二区av| 欧美性生活影院| 国产精品日韩精品欧美在线 | 日本精品一区二区三区高清 | 日韩一区二区电影在线| 亚洲免费在线观看视频| 国产一区视频网站| 欧美一区二区三区免费在线看| 国产精品久久久久永久免费观看| 青青草原综合久久大伊人精品 | 国产精品18久久久久久久久久久久| 色天使久久综合网天天| 国产女人18毛片水真多成人如厕 | 一个色综合av| 国产成人免费在线视频| 日韩精品专区在线| 丝袜美腿亚洲综合| 欧美中文字幕亚洲一区二区va在线 | 一区二区视频免费在线观看| 国产成人av电影免费在线观看| 欧美另类高清zo欧美| 艳妇臀荡乳欲伦亚洲一区| 91亚洲精品久久久蜜桃网站| 日本一区二区在线不卡| 九一九一国产精品| 337p亚洲精品色噜噜噜| 国产精品系列在线播放| 日韩精品一区二区三区视频播放| 肉丝袜脚交视频一区二区| 欧洲一区二区av| 亚洲一卡二卡三卡四卡无卡久久 | 欧美日韩在线精品一区二区三区激情 | 国产精品12区| 久久久国际精品| 国产成人免费在线视频| 中文一区二区在线观看| av一区二区三区黑人| 国产精品久线在线观看| 一本一道久久a久久精品| 亚洲精品ww久久久久久p站| 日本黄色一区二区| 亚洲一区二区三区精品在线| 欧美美女一区二区| 七七婷婷婷婷精品国产| 久久婷婷成人综合色| 岛国精品在线播放| 亚洲综合一区在线| 日韩欧美123| 成人一道本在线| 一区二区不卡在线播放 | 日韩精品久久久久久| 日韩欧美区一区二| 国产成人福利片| 亚洲另类中文字| 欧美一区二区三区性视频| 国产一区激情在线| 亚洲欧美偷拍卡通变态| 欧美精品乱码久久久久久 | 午夜久久福利影院| 欧美mv和日韩mv国产网站| 成人深夜福利app| 一二三四区精品视频| 精品国产免费一区二区三区香蕉| 成人a级免费电影| 亚洲国产精品天堂| 久久奇米777| 精品视频资源站| 国产精品亚洲第一| 丝袜国产日韩另类美女| 国产亚洲精品资源在线26u| 91黄色免费观看| 国内成人精品2018免费看| 最新国产の精品合集bt伙计| 91精品国产手机| 91性感美女视频| 另类中文字幕网| 亚洲欧美日韩国产成人精品影院| 日韩精品一区国产麻豆| 在线看不卡av| 国产成人av电影| 蜜芽一区二区三区| 一个色综合网站| 中文字幕欧美三区| 精品99999| 91精品国产综合久久蜜臀| 91在线免费看| 成人亚洲精品久久久久软件| 男人的天堂亚洲一区| 亚洲图片欧美综合| 亚洲精品一二三| 国产欧美一区在线| 欧美va亚洲va国产综合| 欧美日韩在线亚洲一区蜜芽| 91在线精品一区二区三区| 国内久久婷婷综合| 久久精品久久精品| 午夜精品久久久久久久99水蜜桃 | 91在线视频网址| 成人午夜电影久久影院| 精一区二区三区| 日本网站在线观看一区二区三区| 亚洲国产一区在线观看| 亚洲视频一区二区在线观看| 中文字幕久久午夜不卡| 久久久久久久久久久久久女国产乱| 欧美三级午夜理伦三级中视频| 91偷拍与自偷拍精品| 99视频超级精品| 成人h动漫精品| 99精品国产热久久91蜜凸| 成人av中文字幕| 99re这里只有精品首页| 成人自拍视频在线观看| 成人午夜精品在线| 91在线视频18| 色综合久久中文字幕| 91老师国产黑色丝袜在线| 色综合久久久久久久| 精品污污网站免费看| 欧美一级理论片| 337p粉嫩大胆噜噜噜噜噜91av| 久久久久亚洲综合| 国产欧美日本一区视频| 天天色综合成人网| 午夜私人影院久久久久| 秋霞电影一区二区| 国内精品国产成人国产三级粉色| 国产.欧美.日韩| 92国产精品观看| 欧美绝品在线观看成人午夜影视| 555www色欧美视频| 精品国产精品一区二区夜夜嗨| 国产午夜亚洲精品午夜鲁丝片 | 日韩欧美高清dvd碟片| 国产日韩一级二级三级| 国产精品高清亚洲| 日日摸夜夜添夜夜添精品视频| 麻豆精品视频在线观看| 国产激情视频一区二区在线观看 | 欧美日韩国产影片| 日韩精品中文字幕一区二区三区 | av色综合久久天堂av综合| 在线观看亚洲一区| 日韩精品最新网址| 中文字幕在线观看不卡| 亚洲不卡一区二区三区| 国产呦精品一区二区三区网站| www.欧美色图| 日韩区在线观看| 国产精品毛片高清在线完整版| 亚洲一级电影视频| 国产综合成人久久大片91| 94-欧美-setu| 久久日韩精品一区二区五区| 亚洲免费观看高清完整版在线观看熊| 日韩精品免费视频人成| 99久久99久久免费精品蜜臀| 欧美日韩国产a| 国产精品欧美久久久久一区二区| 亚洲高清视频的网址| 国产东北露脸精品视频| 8x8x8国产精品| 亚洲摸摸操操av| 国产精品一区二区在线播放| 欧美三级视频在线观看| 一区精品在线播放| 国产乱色国产精品免费视频| 欧美日韩国产综合视频在线观看| 中文字幕av不卡| 91原创在线视频| 久久精品无码一区二区三区| 亚欧色一区w666天堂| av电影一区二区| 久久久国产精品麻豆 | 一片黄亚洲嫩模| 成人毛片视频在线观看| 精品对白一区国产伦| 日韩高清一区二区| 精品视频免费在线| 亚洲人成精品久久久久| 粉嫩一区二区三区性色av| 欧美变态凌虐bdsm| 日本美女一区二区三区视频| 欧美特级限制片免费在线观看| 国产精品久久久久久久久果冻传媒| 极品少妇xxxx精品少妇| 91麻豆精品国产自产在线观看一区| 亚洲欧美电影院| 99视频在线观看一区三区| 国产精品久线在线观看| 9色porny自拍视频一区二区| 欧美高清在线一区| 成熟亚洲日本毛茸茸凸凹| 国产蜜臀av在线一区二区三区| 国产sm精品调教视频网站|