I am Charmie

メモとログ

2017-03-01から1ヶ月間の記事一覧

install keras + tensorflow (GPU) to Windows using anaconda

Install Tensorflow and Keras Run Anaconda Prompt Install Tensorflow # pip install tensorflow-gpu Install Keras # pip install keras (Optional) Change Keras' backend from Theano to TensorFlow This step is optional if Keras uses Theano as its…

upgrade/downgrade python version of anaconda

Same as python packages, we can use conda install to upgrade/downgrade python version as conda install python=..* To know the available version, just type conda search ppthon

install pre-built dlib for python

following this page, we can install dlib pre-built library for python on all platform. conda install -c conda-forge dlib When I tried, the library had a conflict with CGAL 4.7. I simply uninstalled CGAL and then successfully installed dlib…

Megaman: Scalable Manifold Learning in Python

megaman is a python module for scalable manifold learning. So far, anaconda does not provide its binary for windows.

install graphillion into anaconda

following the guidance, you should type conda install -c auto graphillion

biber (biblatex) warning related to accent character

add the following lines to suppress the warning caused by accent characters written in bib file. \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc}

CMakeLists.txt for GraphM library

Here's a CMakeLists.txt for GraphM library. [code lang="bash"] cmake_minimum_required(VERSION 2.8) set(PROJ_NAME graphm) project(${PROJ_NAME}) set C++ flags set(CMAKE_WARN_DEPRECATED ON) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -fPIC") …