logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

python列表先按第一个元素排列,再按第二个元素排列(默认升序)

>>> array = [(3, 5), (1, 1), (2, 3), (5, 15),(4, 10)]>>> array.sort(key = lambda x : (x[0], x[1]))>>> array[(1, 1), (2, 3), (3, 5), (4, 10), (5, 15)]

tensorflow-Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX A

今天从头开始学习深度学习时发现,Hello World出现错误。报:2018-10-15 23:27:11.665115: I C:\tf_jenkins\workspace\rel-win\M\windows\PY\36\tensorflow\core\platform\cpu_feature_guard.cc:137] Your CPU supports instructions that t

#tensorflow
【亲测解决】AttributeError: module ‘tensorflow‘ has no attribute ‘__version__‘

今天在安装使用bert-as-service时报错,报错信息如下:AttributeError: module 'tensorflow' has no attribute '__version__'一看,懵逼了,啥,tensorflow么有__version__方法,打开Python解释器看下,import tensorflowtensorflow.__version__我去,还真没...

#tensorflow
话谈tensorflow中feed_dict到底是个啥东西(理解就是python里的format,哈哈哈)

文章目录先说占位符feed_dict先说占位符      tensorflow里对于暂时不进行赋值的元素有一个称呼叫占位符。所谓占位符,顾名思义,先占着茅坑不拉屎,等需要时再赋值。所需要的命令为tf.placeholder,具体代码为:import tensorflow as tfa = t

#tensorflow
BERT模型训练GPU,预测走cpu

最近学习BERT,训练用GPU,预测默认也走GPU,比较耗费资源,启用GPU加载也会有很多信息,想用CPU,设定如下就好:预测代码之前加入os.environ["CUDA_VISIBLE_DEVICES"]="-1"get了,game over。...

#tensorflow#bert
tensorflow.examples不存在,无法载入mnist数据集

将from tensorflow.examples.tutorials.mnist import input_data替换成from tensorflow_core.examples.tutorials.mnist import input_data

#tensorflow
解决pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool

解决pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.问题,今天安装alphaet包时发现,直接pip install alphabet会报错,报错信息是:pip._vendor.urllib3..

#python
报错信息:No model named cv2

说明没有安装cv2模块,一行代码解决的事情:pip install opencv-python

#python
    共 18 条
  • 1
  • 2
  • 请选择