-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add algo docs #232
base: develop-main
Are you sure you want to change the base?
add algo docs #232
Conversation
@@ -34,6 +34,7 @@ Main Features | |||
installation/index | |||
tutorials | |||
gui/index | |||
algorithms/index |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ノード関数ファイルの編集方法(以下での説明内容)のテキストは、docs の配下への格納でしょうか。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちらToDo漏れていましたね、そちらのドキュメントを更新します。
"normalize_init": False, | ||
} | ||
params["fixed_params"] = cnmfe_fixed_params | ||
class CaimanCnmfE(AlgoTemplate): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
caiman cnmfe の実行時、以下のエラーが発生。
※develop-main でも発生しているようなので、当件とは別件そうですが、念のため一旦内容を記載。
Traceback (most recent call last): File "/home/iam/workspaces/projects/araya/010_optinist/barebone-studio/studio/app/common/core/rules/runner.py",
line 43, in run output_info = cls.execute_function( File
"/home/iam/workspaces/projects/araya/010_optinist/barebone-studio/studio/app/common/core/rules/runner.py",
line 128, in execute_function algo() File
"/home/iam/workspaces/projects/araya/010_optinist/barebone-studio/studio/app/optinist/wrappers/caiman/cnmfe.py",
line 129, in run CaimanCnmf() File
"/home/iam/workspaces/projects/araya/010_optinist/barebone-studio/studio/app/optinist/wrappers/caiman/cnmf.py",
line 187, in run ims = np.stack(ims) File "<__array_function__ internals>",
line 180, in stack File
"/home/iam/workspaces/projects/araya/010_optinist/barebone-studio/.snakemake/conda/555e5a3f793f921de7713969efaf5f8c_/lib/python3.8/site-packages/numpy/core/shape_base.py",
line 422, in stack raise ValueError('need at least one array to stack')
ValueError: need at least one array to stack
概要
パラメータ説明機能の実装に向け、アルゴリズムをリファクタリング
AlgoTemplate
クラスを継承して実装するBaseModel
を継承して実装するAPIスキーマは一部変更されているが、各種yamlファイルの構成には影響がないため、下位互換性を持つ
ドキュメンテーションにアルゴリズムのドキュメントを自動生成
関数の実装方法詳細
ToDo