Open
Conversation
itutu-tienday
requested changes
Dec 11, 2023
| installation/index | ||
| tutorials | ||
| gui/index | ||
| algorithms/index |
Collaborator
There was a problem hiding this comment.
ノード関数ファイルの編集方法(以下での説明内容)のテキストは、docs の配下への格納でしょうか。
Author
There was a problem hiding this comment.
こちらToDo漏れていましたね、そちらのドキュメントを更新します。
itutu-tienday
requested changes
Dec 11, 2023
| "normalize_init": False, | ||
| } | ||
| params["fixed_params"] = cnmfe_fixed_params | ||
| class CaimanCnmfE(AlgoTemplate): |
Collaborator
There was a problem hiding this comment.
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
This was referenced Apr 22, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
パラメータ説明機能の実装に向け、アルゴリズムをリファクタリング
AlgoTemplateクラスを継承して実装するBaseModelを継承して実装するAPIスキーマは一部変更されているが、各種yamlファイルの構成には影響がないため、下位互換性を持つ
ドキュメンテーションにアルゴリズムのドキュメントを自動生成
関数の実装方法詳細
ToDo