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
def read_single_cossmo_example(serialized_example, n_tissues=1, coord_sys='rna1'): | |
"""Decode a single COSSMO example | |
coord_sys must be one of 'rna1' or 'dna0', if 'dna0' then an extra 'strand' field | |
must exist in the tfrecord and is extracted. | |
""" | |
assert coord_sys in ['dna0', 'rna1'] | |
context_features = { |
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
from pathlib import Path | |
import os | |
import sys | |
from fire import Fire | |
import numpy as np | |
import pandas as pd | |
from tqdm import tqdm | |
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
""" | |
* Converts images to GGB (grayscale) | |
* Creates subsets for training and validation | |
* Adds columns to indicate training or validation (useful for analysis of the deployed model) | |
* Adds rotated images to the dataset | |
* Creates comma-separated CSV file | |
* Creates zip archive | |
""" | |
import pandas as pd |
OlderNewer