Add new weights

This commit is contained in:
Hubert Siejkowski 2024-07-19 16:11:36 +02:00
parent e6b20a7567
commit 74cdf27dd6
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
] ]
dependencies = [ dependencies = [
"numpy<2.0.0",
"seisbench==0.5.*", "seisbench==0.5.*",
"click" "click"
] ]

View File

@ -13,7 +13,7 @@ EPOS_AI_MODEL_REPOSIOTRY_URL = "https://models.isl.grid.cyfronet.pl/models/v3/"
class PhaseNetModelRunner(ModelRunner): class PhaseNetModelRunner(ModelRunner):
model_type = "PhaseNet" model_type = "PhaseNet"
extra_weights = [("bogdanka", "1"), ("lgcd", "1"), ("bogdanka_lgcd", "1")] extra_weights = [("bogdanka", "1"), ("lgcd", "1"), ("bogdanka_lgcd", "1"), ("sentinels", "1")]
def __init__(self, weights_name="original", output_dir=pathlib.Path("."), **kwargs): def __init__(self, weights_name="original", output_dir=pathlib.Path("."), **kwargs):
self.model_name = getattr(sbm, PhaseNetModelRunner.model_type) self.model_name = getattr(sbm, PhaseNetModelRunner.model_type)