240 发简信
IP属地:广东
  • Chapter 7 Ensemble Learning

    1. If you have trained five different models on the exact same training ...

  • Chapter 6 Decision Trees

    1. What is the approximate depth of a decision tree trained (without res...

  • Chapter 5 Support Vercot Machines

    Whatis the fundamental idea behind Support Vector Machines ?The fundamen...

  • Capter 4 - Training Models Exercise

    1 .Which linear regression training algorithm can you use if you have a ...

  • 猴子都能懂的Transformers

    引入一些包,主要使用tensorflow '2.10.1' 加 transformers '4.25.1' 使用TFDS加载imdb_revie...

  • The Fundamentals of Machine Learning

    How would you define Machine Learning? Machine Learning is the science (...

  • NLP保存与加载模型

    加载组件 创建训练测试集 创建模型的函数 保存模型 (这里只保存模型的参数) 保存规则的其他设置这里可以在迭代中保存最优的一组参数,在超长时间的...

  • 猴子都能懂的NLP (NLU)

    唯一需要注意的地方是,需要接两层BiLstm 来对数据进行降一个维度。如果不降维,会导致输出的矩阵形状与预设值不一致 测试集的准确率为 97.8...

  • 猴子都能懂的NLP(NER)

    创建一个简单的模型理解句子某些词的语义(NER) 加载一些包 加载标签和语句 在ner文件夹里面有一堆原始数据,每句话后面是每个词的标签。 序列...