原创 Ubuntu細節記錄

1、右鍵打開終端設置: sudo apt-get install nautilus-open-terminal 註銷後生效。 2、可執行.sh文件文件雙擊運行: 直接在任意文件夾下,菜單中選擇Edit->Preference->

原创 You should consider upgrading via the 'pip install --upgrade pip' command.

使用pip3安裝軟件時報如下錯誤: You are using pip version 8.1.1, however version 9.0.1 is available. You should consider upgrad

原创 檢測tensorflow是否使用gpu進行計算

import tensorflow as tf sess = tf.Session(config=tf.ConfigProto(log_device_placement=True)) 查看日誌信息若包含gpu信息,就是使用了gpu

原创 Jupyter notebook中Python2和Python3共存

我之前Jupyter notebook中只有Python3,可以通過一下方式添加python2: python2 -m pip install ipykernel python2 -m ipykernel install --us

原创 Error parsing PCC subspaces from PCCT

安裝ubuntu16.04時,出現錯誤 Error parsing PCC subspaces from PCCT ACPI Error: [SDS0] Namespace lookup failure, AE_NOT_FO

原创 EOFError: Ran out of input

使用pickle.load(f)加載pickle文件時,報錯:EOFError: Ran out of input. 可能原因:文件爲空。 解決辦法:加載非空文件。 其他解決辦法: 1、加載前判斷文件是否爲空 import

原创 Udacity Deep Learning 任務 1: notMNIST

預處理 notMNIST 數據,在此基礎上訓練一個簡單的邏輯迴歸模型 導入python庫: # These are all the modules we'll be using later. Make sure you can

原创 %matplotlib inline UnknownBackend: No event loop integration for 'inline'.

在ipython中執行%matplotlib inline報如下錯誤: UnknownBackend: No event loop integration for ‘inline’. Supported event loops

原创 線性代數,矩陣相關學習資源推薦

教學視屏: 線性代數 b站熟肉作品 博客:理解矩陣(一) 理解矩陣(二) 理解矩陣(三) 矩陣本質講解 Jacobian矩陣和Hessian矩陣 進階知識 點贊 2 收藏 分享 文章舉報

原创 機器學習好文收集

從最大似然估計開始,你需要打下的機器學習基石 數學之美番外篇:平凡而又神奇的貝葉斯方法 Bayes’ Theorem: The Holy Grail of Data Science 理解矩陣(一) 隱馬爾科夫模型 支持向量機系列

原创 jupyter notebook使用的python環境不對

對jupyter notebook進行一些操作後,在打開運行jupyter notebook時,發現我已經安裝的一些python包無法導入了,如: import numpy as np 報錯: ImportError: No mod

原创 ImportError: cannot import name 'ensure_dir_exists'

jupyter notebook重裝或更新後,執行jupyter notebook出現如下錯誤: Traceback (most recent call last): File "/home/cc/install/anaconda

原创 YOLO系列(二)—— YOLO9000:Better, Faster, Stronger

本系列分爲三篇,此文爲本系列第二篇,其他文章: YOLO系列(一)—— You Only Look Once:Unified, Real-Time Object Detection YOLO系列(三)—— YOLOv3: An Inc

原创 YOLO系列(三)—— YOLOv3: An Incremental Improvement

本系列分爲三篇,此文爲本系列第三篇,其他文章: YOLO系列(一)—— You Only Look Once:Unified, Real-Time Object Detection YOLO系列(二)—— YOLO9000:Bette

原创 YOLO系列(一)—— You Only Look Once:Unified, Real-Time Object Detection

本系列分爲三篇,此文爲本系列第二篇,其他文章: YOLO系列(一)—— You Only Look Once:Unified, Real-Time Object Detection YOLO系列(二)—— YOLO9000:Bette