Skip to content
Snippets Groups Projects

Resolve "IntelliO3 implementation into MLAir"

Merged Ghost User requested to merge vincent_issue310-intellio3-implementation-into-mlair into develop
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
import keras
import pytest
from mlair.model_modules.model_class import MyPaperModel
from mlair.model_modules.model_class import IntelliO3_ts_architecture
class TestMyPaperModel:
class TestIntelliO3_ts_architecture:
@pytest.fixture
def mpm(self):
return MyPaperModel(input_shape=[(7, 1, 9)], output_shape=[(4,)])
return IntelliO3_ts_architecture(input_shape=[(7, 1, 9)], output_shape=[(4,)])
def test_init(self, mpm):
# check if loss number of loss functions fit to model outputs
Loading