- 博客(2)
- 收藏
- 关注
原创 jupyter notebook 导入tensorflow时出错,no module named tensorflow
1、背景首先说一下我的环境:os : ubuntu 18anaconda版本:4.7官网提供了两种方法来安装TensorFlow:pip和anaconda。我使用的是pip方法。pip install --upgrade --ignore-installed tensorflow按照步骤安装完成后,在命令行可以导入tensorflow,也可以运行程序,然后我在创建的名为p...
2019-11-20 21:04:59 2037
原创 LeetCode001_Two Sum
用到一种数据结构HashMap,用来存储值和索引,方便返回索引值。时间复杂度为O(n)public int[] twoSum(int[] nums, int target) { Map<Integer,Integer> map = new HashMap<>(); for(int i=0;i<nums.length;i++) {...
2019-03-01 09:17:50 156
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人