riow1983 / novozymes-enzyme-stability-prediction

0 stars 0 forks source link

novozymes-enzyme-stability-prediction

header
https://www.kaggle.com/competitions/novozymes-enzyme-stability-prediction
どんなコンペ?:

[コンペ名称]

[URL]
https://www.kaggle.com/competitions/novozymes-enzyme-stability-prediction

[コンペ概要]

[コンペ開催期間]

[希望参加期間 (コンペ終了後の振り返り期間含む)]

[参加希望者]

[どのような経験が得られるか]

[ビジネスにどう活かせるか]


開催期間:
timeline
結果





実験管理テーブル

https://wandb.ai/riow1983/novozymes-enzyme-stability-prediction?workspace=user-riow1983 commitSHA comment W&B Local CV Public LB Private LB


Late Submissions

commitSHA comment W&B Local CV Public LB Private LB


My Assets

[notebook命名規則]

Code

作成したnotebook等の説明 name url status comment



参考資料

Snipets

proj_name = 'HOGE'
nb_name = 'hogehoge'

import sys
import os
from pathlib import Path

KAGGLE_ENV = True if 'KAGGLE_URL_BASE' in set(os.environ.keys()) else False

if KAGGLE_ENV:
    INPUT_DIR = Path('../input')
    OUTPUT_DIR = Path('')
else:
    if "google.colab" in sys.modules:
        from google.colab import drive
        drive.mount("/content/drive")
        base = f"/content/drive/MyDrive/colab_notebooks/kaggle/{proj_name}"
    else:
        base = '..'
    INPUT_DIR = Path(f"{base}/input/")

    os.mkdirs(INPUT_DIR.as_posix(), exist_ok=True)
    OUTPUT_DIR = INPUT_DIR / nb_name
    os.mkdirs(OUTPUT_DIR.as_posix(), exist_ok=True)


Papers

name url status comment


Blogs (Medium / Qiita / Others)

name url status comment
第2回 地球から細胞が生まれた1 URL Done the birth of biomolecules


Documentation (incl. Tutorial)

name url status comment
MIA: Multimodal single-cell data, open benchmarks, and a NeurIPS 2021 competition URL Watching コンペホストによるYouTube動画.
議論中心.


BBC (StackOverflow / StackExchange / Quora / Reddit / Others)

name url status comment


GitHub

name url status comment


Hugging Face

name url status comment


Colab Notebook

name url status comment


Kaggle (Notebooks)

name url status comment


Kaggle (Datasets)

name url status comment


Kaggle (Discussion)

name url status comment



Diary

2022-12-23




2023-01-03

結果はxxx/xxx (暫定) だった.
private lb image

どのように取り組み, 何を反省しているか
My submissions について
xxxについて



Back to Top