Skip to content
Snippets Groups Projects
Commit 50fbd687 authored by Maxim Gonchar's avatar Maxim Gonchar
Browse files

feat: new model v0e=v0d(future)

parent ef55f5b7
No related merge requests found
......@@ -6,12 +6,14 @@ from .dayabay_v0 import model_dayabay_v0
from .dayabay_v0b import model_dayabay_v0b
from .dayabay_v0c import model_dayabay_v0c
from .dayabay_v0d import model_dayabay_v0d
from .dayabay_v0e import model_dayabay_v0e
_dayabay_models = {
"v0": model_dayabay_v0,
"v0b": model_dayabay_v0b,
"v0c": model_dayabay_v0c,
"v0d": model_dayabay_v0d,
"v0e": model_dayabay_v0e,
}
_available_sources = ("tsv", "hdf5", "root", "npz")
......
This diff is collapsed.
This diff is collapsed.
......@@ -7,9 +7,6 @@ from models import available_models, load_model
@mark.parametrize("modelname", available_models())
def test_dayabay_v0(modelname: str):
# TODO: remove when the model is done
if modelname=="v0d":
return
model = load_model(modelname, close=True, strict=True)
graph = model.graph
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment