MLops 実験開発環境の整備の必要性

MLops

レベル1だけでもやっとけばええんちゃうか

やること

  • データの前処理と保存
  • 特徴量の抽出と保存
  • 分類器の学習と保存
  • それぞれのパラメータの保存

利点

実験する部分や追加したい機能の切り分けがしやすくなる。

[Read More]

pythonに引数をとらせるArgparseの例

サンプルプログラム

以下公式サイトより引用

import argparse

parser.add_argument("square", type=int,
                    help="display a square of a given number")
parser.add_argument("-v", "--verbose", action="store_true",
                    help="increase output verbosity")
args = parser.parse_args()
answer = args.square**2

解説

parser.add_argument("square", type=int,
                help="display a square of a given number")

引数の名前がsquare

型を指定できる。デフォルトはstr。

前に-がつかない名前は位置引数。

[Read More]

Creating data in Natural Language Inference (NLI) format for Sentence transformer

Using the Sentence Transformer to I’m trying to use Sentence Transformer to infer causal relationships between documents.

If we can do this, we can extract the cause and symptoms of the incident from the report.

So, I wondered if NLI could be used for feature learning to extract causal information. I thought.

What is NLI?

Inference of the relationship between two sentences

  • Forward
  • Inverse
  • Unrelated

The three relations are.

Apply to causal relationships

If we apply the three relationships of NLI to causality, the following patterns are possible.

[Read More]

うつ病になってからの取り組み

研究生活の中で倒れ、起き上がれなくなった。

手足が鉛のように重く、身動きができなくなった。

また、味のする食べ物が受け付けなくなり、乾パンと水しか喉を通らなくなった。

[Read More]

女声の出し方や練習方について 男性向け メモ

エッジボイスに近いやり方?

歌のためのボイトレのやり方を知っていると感覚を掴みやすいかもしれない。

手順

  1. 舌を出しながら声を出す
  2. 喉の力の入り具合を維持しながら舌を戻す
  3. 力の入るポイントをより背中側や上側にズラす
  4. 音程を上げる

3と4の手順を試行錯誤して自分の理想の声を探る

[Read More]