タグ

2013年9月17日のブックマーク (2件)

  • A Course in Machine Learning

    by Hal Daumé III Machine learning is the study of algorithms that learn from data and experience. It is applied in a vast variety of application areas, from medicine to advertising, from military to pedestrian. Any area in which you need to make sense of data is a potential consumer of machine learning. CIML is a set of introductory materials that covers most major aspects of modern machine learni

  • サーバの apt パッケージ構成を保存し再現したい - それマグで!

    Ubuntu(Debian)を何度もインストールしていると、パッケージのインストールコマンドを何度も叩いていて嫌になり、面倒だからdd して深みにはまったり。手抜きしてrsyncしてヒドい状態になったり。。。仕方ないので apt-get install XX -y をbashで書いたりしてました。 DebianのAptには、パッケージインストール一覧を保存する機能がある。 保存したインストール一覧を使って、パッケージをまとめて再インストール出来る機能がある。ときどき、パッケージのインストールやサーバーの設定をバイトに投げている事例や、複数台にddしている事例を見るが、パッケージ構成をパッケージ管理システムに任せた方がずっと楽が出来る。 aptのインストール済みパッケージ一覧 dpkg --get-selections > installed.list 出力例(抜粋 acl install

    サーバの apt パッケージ構成を保存し再現したい - それマグで!