摘要:
数据预处理:离散特征编码方法 Python库category_encoders将离散特征的编码方法分为2类:有监督和无监督。 各种编码方法的原理如何呢? 无监督方法: 1.序号编码OrdinalEncoder 序号编码通常用于处理类别间具有大小关系的数据。如产品等级分为高、中、低三档,存在“高>中> 阅读全文
摘要:
因为anaconda现在还没完美支持M1,因此通用的步骤还是Xcode、miniforge、ATF2.4等。 TensorFlow 2.4 on Apple Silicon M1: installation under Conda environment 1. 你可能遇到的问题: Anaconda下 阅读全文
摘要:
持续更新~ 1.以TensorFlow为例 1.1 报错1:zsh: illegal hardware instruction 实验环境:macOS Big Sur 11.5.1 + anaconda3 + python3.8 直接用 pip install tensorflow 安装,能够顺利安装 阅读全文
摘要:
异常1:PackagesNotFoundError: The following packages are not available from current channels: conda install X出现找不到X包问题,如下所示:默认的channels里找不到。 解决方案1:用pip i 阅读全文
摘要:
MacBook M1芯片安装Tensorflow踩坑 首先看下TensorFlow版本和Python的适配: 参考:https://tensorflow.google.cn/install/source#macos 踩坑1:在mac m1上安装tensorflow报错“zsh: illegal ha 阅读全文
摘要:
文本分类应用 1.1 讽刺检测 Multi-Modal Sarcasm Detection in Twitter with Hierarchical Fusion Model. ACL 2019 论文来源:ACL 2019 论文链接:https://www.aclweb.org/anthology/ 阅读全文
摘要:
对Skip-Gram模型优化扩展 论文解读:Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg Corrado, Jeffrey Dean. Distributed Representations of Words and Phrases and their 阅读全文
摘要:
Paper:Generating Hierarchical Explanations on Text Classification via Feature Interaction Detection 论文:Generating Hierarchical Explanations on Text Cl 阅读全文
摘要:
Paper:Visualizing and Understanding Convolutional Networks 2014 ECCV 纽约大学 Matthew D. Zeiler, Rob Fergus 论文:Visualizing and Understanding Convolutional 阅读全文
摘要:
ELMO BERT GPT ELMO ELMo首先想到了在预训练阶段为每个词汇集齐上下文信息,使用的是基于bi-LSTM的语言模型给词向量带上上下文语义信息: 但ELMo使用的是RNN来完成语言模型的预训练,那么如何使用Transformer来完成预训练呢? GPT GPT(Generative P 阅读全文