Skip to content
Snippets Groups Projects

Resolve "release v1.4.0"

Merged Ghost User requested to merge release_v1.4.0 into master
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
import keras
import keras
import pytest
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
@pytest.fixture
def mpm(self):
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):
def test_init(self, mpm):
# check if loss number of loss functions fit to model outputs
# check if loss number of loss functions fit to model outputs
Loading