原创 我回來了...

我回來了… 密碼終於找回來了。 繼續堅持記錄所學所想。

原创 3D U-Net: Learning Dense Volumetric Segmentation from Sparse Annotation

Refs: 3D U-Net: Learning Dense Volumetric Segmentation from Sparse Annotation 1.簡介 目的:對稀疏標籤的立體圖像進行分割。 - 半自動化:標記一部

原创 安裝mysql 5.6.x

Windows 安裝並配置 MySQL 5.6 Windows 下安裝 MySQL 有兩種方式,一種是下載安裝包,根據提示一路 next 安裝,不需要什麼配置,比較簡單;另一種是下載壓縮包,通過命令和配置來安裝,也不難,個人

原创 爬取搜狗輸入法的醫學詞庫 下載.scel格式文件

Ps: 參考代碼 原文鏈接:https://blog.csdn.net/Q_QuanTing/article/details/82698229 Why am I doing this? 入職後一段時間被安排去做了nlp的相關工作,

原创 python解壓zip

python解壓zip 這種瑣碎知識點總是記不住具體細節,mark一下。 知識點: - zipfile - os.mkdir #新建文件夾 import zipfile import os def upzip(): #如果目標

原创 python 解 多元一次方程

1. 待解方程式 已知ai,bi,ci,求解x,y,z。 a1*x + b1*y+c1*z = 1 a2*x + b2*y+c2*z = 2 a3*x + b3*y+c3*z = 3 2. 需要的模塊與方法 numpy np

原创 numpy meshgrid

numpy.meshgrid() X,Y = numpy.meshgrid(x, y) 輸入: x,網格點的橫座標點組成的向量;y,網格點的縱座標點組成的向量。 輸出: X,Y爲橫縱座標矩陣。 import numpy as np

原创 screen命令基本用法詳解

轉自:https://blog.mythsman.com/2016/01/19/1/ screen命令基本用法詳解 在服務器上搭建一些服務的時候,經常要用到screen命令。這是因爲一般情況下我們只會開一個連接服務器的控制檯,但是

原创 bundle install 長時間無響應解決辦法

改鏡像再執行bundle install $ bundle config mirror.https://rubygems.org https://gems.ruby-china.com

原创 Looking Fast and Slow: Memory-Guided Mobile Video Object Detection

Looking Fast and Slow: Memory-Guided Mobile Video Object Detection 1.簡介 目的:計算機視覺系統中使用內存是否可以提高移動設備視頻流中目標檢測的準確性,以及是否

原创 Bundler could not find compatible versions for gem “bundler”: In Gemfile:

在運行jekyll server 的時候遇到的坑: Fetching gem metadata from https://gems.ruby-china.com/........... Fetching gem metadata

原创 Ubuntu pip安裝tensorflow遇到的問題

1. sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_

原创 Ubuntu出現/boot空間不足

Ubuntu更新後警告/boot分區空間不足。用uname -a查看當前啓動的是哪個內核。 清理一下沒用的內核文件,命令如下: $ dpkg -l 'linux-image-*' | grep '^ii' 或 $ dpkg --get-

原创 caffe訓練圖片遇到的奇葩問題= =

運行caffe 自帶的數據轉換腳本create_imagenet.sh時,總提示下面的錯誤: could not open or find /home/dl/caffe-master/data/cell/1.bmp 0 檢查了好半天,首先

原创 tensorflow輸入mat格式的數據

先馬克幾個地址,研究完了再寫… http://stackoverflow.com/questions/37620330/import-tensor-with-mat-format-to-tensorflow http://ischlag