Hi, it's an impressive work! However, you might not provide enough info about this repo's python lib dependency, e.g. the exact version of numpy, segmentation_models_pytorch etc.
Here's some problems i've met in my practice:
Numpy should be lower than 2.0.0 but higher than 1.24.0, or it would raise an ModuleImport Error.
- I don't know which version of
segmentation_models_pytorch would be better, however, it raises a TypeError: use_batchnorm is not available in md.Conv2D() function. So to solve this problem, I changed three different places from use_batchnorm=use_batchnorm to use_norm=use_batchnorm. I suggest it's just a versions' difference.
Thx for ur amazing work!
Hi, it's an impressive work! However, you might not provide enough info about this repo's python lib dependency, e.g. the exact version of
numpy,segmentation_models_pytorchetc.Here's some problems i've met in my practice:
Numpyshould be lower than 2.0.0 but higher than 1.24.0, or it would raise an ModuleImport Error.segmentation_models_pytorchwould be better, however, it raises a TypeError:use_batchnormis not available inmd.Conv2D()function. So to solve this problem, I changed three different places fromuse_batchnorm=use_batchnormtouse_norm=use_batchnorm. I suggest it's just a versions' difference.Thx for ur amazing work!