<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weixin_63898930的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weixin_63898930</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weixin_63898930]]></copyright><item><title><![CDATA[【Sklearn】指标检测]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/144698785</link><guid>https://blog.csdn.net/weixin_63898930/article/details/144698785</guid><author>weixin_63898930</author><pubDate>Tue, 24 Dec 2024 17:13:42 +0800</pubDate><description><![CDATA[【代码】【Sklearn】指标检测。]]></description><category></category></item><item><title><![CDATA[最后一次尝试]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/144495434</link><guid>https://blog.csdn.net/weixin_63898930/article/details/144495434</guid><author>weixin_63898930</author><pubDate>Mon, 16 Dec 2024 00:51:06 +0800</pubDate><description><![CDATA[return {return {return 0.0return {]]></description><category></category></item><item><title><![CDATA[againagain,指标检测]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/144493888</link><guid>https://blog.csdn.net/weixin_63898930/article/details/144493888</guid><author>weixin_63898930</author><pubDate>Sun, 15 Dec 2024 22:24:58 +0800</pubDate><description><![CDATA[else:else:]]></description><category></category></item><item><title><![CDATA[再来再来，指标检测]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/144493143</link><guid>https://blog.csdn.net/weixin_63898930/article/details/144493143</guid><author>weixin_63898930</author><pubDate>Sun, 15 Dec 2024 21:30:57 +0800</pubDate><description><![CDATA[""""""""""""""""""""""""]]></description><category></category></item><item><title><![CDATA[再来，指标检测]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/144491748</link><guid>https://blog.csdn.net/weixin_63898930/article/details/144491748</guid><author>weixin_63898930</author><pubDate>Sun, 15 Dec 2024 20:11:57 +0800</pubDate><description><![CDATA[""""""""""""""""""""""""""""""""""""]]></description><category></category></item><item><title><![CDATA[分段（训练集，验证集，测试集）]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/144489950</link><guid>https://blog.csdn.net/weixin_63898930/article/details/144489950</guid><author>weixin_63898930</author><pubDate>Sun, 15 Dec 2024 18:06:46 +0800</pubDate><description><![CDATA[# Split datasets explicitly
    train_ds, valid_ds, test_ds = model_wrapper.benchmark.split(model_wrapper.epoch, model_wrapper.step)    # Start training the model
    print("Starting training...")
    model_wrapper.train(train_ds)    # Directly use the tra]]></description><category></category></item><item><title><![CDATA[指标检测代码]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/144489897</link><guid>https://blog.csdn.net/weixin_63898930/article/details/144489897</guid><author>weixin_63898930</author><pubDate>Sun, 15 Dec 2024 18:02:48 +0800</pubDate><description><![CDATA[import tensorflow as tfclass CustomPrecision(tf.keras.metrics.Metric):
    def __init__(self, name='precision', **kwargs):
        super(CustomPrecision, self).__init__(name=name, **kwargs)
        self.true_positives = self.add_weight(name='tp', initializ]]></description><category></category></item><item><title><![CDATA[【脚本】bash和sh在运行脚本方面的不同]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/140721705</link><guid>https://blog.csdn.net/weixin_63898930/article/details/140721705</guid><author>weixin_63898930</author><pubDate>Fri, 26 Jul 2024 17:57:45 +0800</pubDate><description><![CDATA[bash和sh都是Unix shell，但它们有一些关键的区别，特别是在运行脚本时。（Unix shell 即命令行解释器，用于与操作系统交互。sh命令行编辑、历史记录、数组bashbashshdashbashshbash[[ ... ]]<(...)sh[ ... ]]]></description><category></category></item><item><title><![CDATA[【混淆矩阵和ROC曲线】结果应该怎么理解？]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/138756917</link><guid>https://blog.csdn.net/weixin_63898930/article/details/138756917</guid><author>weixin_63898930</author><pubDate>Sun, 12 May 2024 15:35:33 +0800</pubDate><description><![CDATA[X轴是假阳性率 (False Positive Rate, FPR)，Y轴是真阳性率 (True Positive Rate, TPR)，也称为召回率。混淆矩阵是一个表格，它显示了模型预测的类别与真实类别之间的关系。FP (False Positives): 错误预测为正类的数量。FN (False Negatives): 错误预测为负类的数量。TP (True Positives): 正确预测为正类的数量。TN (True Negatives): 正确预测为负类的数量。) 可以用来衡量模型的整体性能。]]></description><category></category></item><item><title><![CDATA[hadoop+spark词频统计+时间记录]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/135447443</link><guid>https://blog.csdn.net/weixin_63898930/article/details/135447443</guid><author>weixin_63898930</author><pubDate>Mon, 08 Jan 2024 00:45:33 +0800</pubDate><description><![CDATA[import org.apache.spark.SparkContext
import org.apache.spark.SparkContext._
import org.apache.spark.SparkConf
import java.io.PrintWriter
object WordCount {
    def main(args: Array[String]) {
        val inputFile =  "file:///usr/local/spark/mycode/wordcou]]></description><category></category></item><item><title><![CDATA[【记录】Ubuntu20.04下安装sbt]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/135139187</link><guid>https://blog.csdn.net/weixin_63898930/article/details/135139187</guid><author>weixin_63898930</author><pubDate>Thu, 21 Dec 2023 20:00:36 +0800</pubDate><description><![CDATA[Ubuntu sbt]]></description><category></category></item><item><title><![CDATA[【微信小程序】边框的多种样式设置及效果]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/132528220</link><guid>https://blog.csdn.net/weixin_63898930/article/details/132528220</guid><author>weixin_63898930</author><pubDate>Sun, 27 Aug 2023 21:55:10 +0800</pubDate><description><![CDATA[四、双线（double）五、凹陷（groove）七、内嵌（insert）八、外嵌（outset）三、点线（dotted）六、凸起（ridge）一、实线（solid）]]></description><category></category></item><item><title><![CDATA[算法实验一]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/129473015</link><guid>https://blog.csdn.net/weixin_63898930/article/details/129473015</guid><author>weixin_63898930</author><pubDate>Sun, 12 Mar 2023 10:40:00 +0800</pubDate><description><![CDATA[【代码】算法实验一。]]></description><category></category></item><item><title><![CDATA[DS二叉树--后序遍历非递归算法]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/127380070</link><guid>https://blog.csdn.net/weixin_63898930/article/details/127380070</guid><author>weixin_63898930</author><pubDate>Tue, 18 Oct 2022 00:39:26 +0800</pubDate><description><![CDATA[数据结构]]></description><category></category></item><item><title><![CDATA[OOP一元多项式类（运算符重载）]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/125788459</link><guid>https://blog.csdn.net/weixin_63898930/article/details/125788459</guid><author>weixin_63898930</author><pubDate>Thu, 14 Jul 2022 17:09:34 +0800</pubDate><description><![CDATA[OOP一元多项式类（运算符重载）]]></description><category></category></item><item><title><![CDATA[计算学生成绩等级（虚函数和多态）]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/125788303</link><guid>https://blog.csdn.net/weixin_63898930/article/details/125788303</guid><author>weixin_63898930</author><pubDate>Thu, 14 Jul 2022 17:01:49 +0800</pubDate><description><![CDATA[计算学生成绩等级（虚函数和多态）]]></description><category></category></item><item><title><![CDATA[矩阵类模板（类模板）]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/125788075</link><guid>https://blog.csdn.net/weixin_63898930/article/details/125788075</guid><author>weixin_63898930</author><pubDate>Thu, 14 Jul 2022 16:56:10 +0800</pubDate><description><![CDATA[矩阵类模板（类模板）]]></description><category></category></item><item><title><![CDATA[X的放大与缩小（运算符重载）]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/125785577</link><guid>https://blog.csdn.net/weixin_63898930/article/details/125785577</guid><author>weixin_63898930</author><pubDate>Thu, 14 Jul 2022 15:34:03 +0800</pubDate><description><![CDATA[X的放大与缩小（运算符重载）]]></description><category></category></item><item><title><![CDATA[OOP矩阵类运算（运算符重载）]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/125785472</link><guid>https://blog.csdn.net/weixin_63898930/article/details/125785472</guid><author>weixin_63898930</author><pubDate>Thu, 14 Jul 2022 15:27:35 +0800</pubDate><description><![CDATA[OOP矩阵类运算（运算符重载）]]></description><category></category></item><item><title><![CDATA[日程安排（多继承+友元函数）]]></title><link>https://blog.csdn.net/weixin_63898930/article/details/125785283</link><guid>https://blog.csdn.net/weixin_63898930/article/details/125785283</guid><author>weixin_63898930</author><pubDate>Thu, 14 Jul 2022 15:24:04 +0800</pubDate><description><![CDATA[日程安排（多继承+友元函数）]]></description><category></category></item></channel></rss>