简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
最近重学C语言,刷的是胡凡写的《算法笔记》,这本书的题主要是面向考研机试和一般算法考试的,零基础入门,还不错,在此记录学习过程。本文主要记录一些STL中容器和函数的用法。
module ‘tensorflow’ has no attribute ‘sparse_to_dense’tensorflow2.0中把 sparse_to_dense去掉了可以使用下面两个函数替代1、先构造SparseTensortf.sparse.SparseTensor()2、再将Sparse Tensor转Densetf.sparse.to_dense()合在一起sp...
这里写自定义目录标题tensorflow和tensorflow2.0控制显存tensorflow和tensorflow2.0控制显存下面的方法可以控制tensorflow或keras实现显存自适应。if tf.__version__.startswith('1.'):# tensorflow 1config = tf.ConfigProto()# allow_soft_pl...
ubuntu14.04安装chrome浏览器1.下载deb包对于谷歌Chrome32位版本,使用如下链接:wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb对于64位版本可以使用如下链接下载:wget https://dl.google.com/linux/direct/go
Output tensors to a Model must be the output of a TensorFlow Layer使用tensorflow.keras构造网络的时候出现如下错误:Output tensors to a Model must be the output of a TensorFlow `Layer`如果是原生keras可能是如下错误:Output tens...
深度学习知识整理(待写)1、数学基础2、机器学习3、深度学习经典算法4、最新深度学习研究5、自然语言处理
人工智能绪论标签(空格分隔): 人工智能人工智能–研究、设计、应用智能机器和智能系统,来模仿人类智能活动的能力的科学。智能:指人类和动物具有的智力和行为能力。人类智能:人类在认识客观世界的中,由思维过程和认知活动表现出来的综合能力。
ImportError: No module named MySQLdb解决方法:1、安装mysqlsudo apt-get install mysql-serversudo apt install mysql-clientsudo apt install libmysqlclient-dev2.安装MySQL-pythonpip install MySQLdb...
Anaconda创建新的python环境1.创建conda create -n testpython python=3.6其中testpython为环境名,python=3.6为指定python版本然后就会可以安装一个包含了简单基础包的python想要进入该python环境:source activate testpython退出该python环境:source deac...
keras_contrib 安装keras_contrib是keras的一个高级网络实现模块,里面包含了用keras实现的CRF等高级网络层和相关算法。问题:ModuleNotFoundError: No module named ‘keras_contrib’解决:安装keras_contribpip install git+https://www.github.com/keras-t...