Skip to content

Instantly share code, notes, and snippets.

@muripoLife
muripoLife / document.md
Created February 19, 2020 00:59
Singularity基本知識・インストール

Singularityとは

一言でいうと

HPC向けのコンテナー型仮想化

詳細

ユーザーが自身の計算環境を完全に再現し、保持できるようにした新しい Linux コンテナで、アプリケーションの本体及び動作に必要なライブラリ、さらにはデータをパッケージ化する。

特徴

  • 作成元LBNL
  • Job Schedulaerに対応
  • 実行時に root 権限不要
@muripoLife
muripoLife / wsl_start.md
Last active January 1, 2021 13:59
WSLへのJuliaのインストール

やること

  1. 公式ページから Generic Linux Binaries for x86 の64bitの .tar.gzをDL
  2. tar -Jxvf julia-1.3.1-linux-x86_64.tar.gz で解凍
  3. .bashrc に追記 alias julia='HOME/julia-1.3.1/bin/julia'
  4. source .bashrc で反映
  5. julia を立ち上げる
  6. ] で pakageモードにする
  7. pakageモードで add IJulia
  8. jupyter をインストール
@muripoLife
muripoLife / m5-base-notebook.ipynb
Last active June 3, 2020 23:01
m5-base-notebook.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@muripoLife
muripoLife / temp.ipynb
Last active May 31, 2020 16:24
Untitled1.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@muripoLife
muripoLife / ion-switching-lgb-regression-model.ipynb
Created May 14, 2020 06:59
Ion switching - LGB regression model
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@muripoLife
muripoLife / lgbm-optuna-wavenet-with-shifted-rfc-proba-and-cb.ipynb
Created May 13, 2020 03:21
lgbm-optuna-wavenet-with-shifted-rfc-proba-and-cb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@muripoLife
muripoLife / simple-kalman-filter.ipynb
Created April 24, 2020 11:29
simple_kalman_filter
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@muripoLife
muripoLife / create_calendar.py
Created March 23, 2020 15:59
pandasでカレンダーを作る。
# original calendar
original_calendar_df=pd.DataFrame(pd.date_range("2011", freq="D", periods=2000), columns=["date"])
original_calendar_df["date"] = original_calendar_df.date.astype("str")
@muripoLife
muripoLife / R_start.md
Last active March 3, 2020 11:25
Rの環境構築
$ sudo apt-get install r-base-core
$ R
$ install.packages('IRkernel')
$ IRkernel::installspec()