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 abc import ABC, abstractmethod | |
| import multiprocessing.managers | |
| from typing import Union, List | |
| import torch | |
| import numpy as np | |
| import torch.multiprocessing as mp | |
| from PIL import Image | |
| from seedp.data_models import Patch, Labels, Patches |
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 setuptools import find_packages, setup | |
| setup( | |
| name="camelyon", | |
| version="0.4", | |
| packages=find_packages(), | |
| package_dir={"": "."}, | |
| install_requires=["openslide-python", "matplotlib", "numpy"], | |
| ) |