Skip to content

The included training script doesn't produce viable training samples when target class is nuc #130

Answered by yuriyzubov
fgdfgfthgr-fox asked this question in Q&A
Discussion options

You must be logged in to vote

HI, @fgdfgfthgr-fox

I does seem like you have the old version of the data that contained checksum parameter, which caused tensor-store error.
I recommend to download the latest data, since all the issues should be resolved, as well as additional raw fib-sem data was also added when we opened submussion.

Just in case the checksum issue still persists, you can resolve it by removing it from the metadata:

import json
import os
def del_checksum(path_to_zarray : str):
    path_to_zarray = os.path.join(path_to_zarray, '.zarray')
    with open(path_to_zarray, 'r+') as f:
        data = json.load(f)
        try:
            del data['compressor']['checksum']
        except:
            pass

    …

Replies: 13 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by rinva
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
Partipant Issue A code issue/bug encountered by challenge participant(s).
3 participants
Converted from issue

This discussion was converted from issue #110 on March 19, 2025 19:09.