Skip to content

Commit

Permalink
Builds fix (#98)
Browse files Browse the repository at this point in the history
* remove redundant test

* remove codecov badge
  • Loading branch information
MorrisNein authored May 21, 2024
1 parent 26c0a52 commit 295c7e2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![package](https://badge.fury.io/py/gamlet.svg)](https://badge.fury.io/py/gamlet)
[![Build](https://github.com/ITMO-NSS-team/MetaFEDOT/actions/workflows/build.yml/badge.svg)](https://github.com/ITMO-NSS-team/MetaFEDOT/actions/workflows/build.yml)
[![Documentation Status](https://readthedocs.org/projects/gamlet/badge/?version=latest)](https://gamlet.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/ITMO-NSS-team/GAMLET/graph/badge.svg?token=N3Z9YTPHP9)](https://codecov.io/gh/ITMO-NSS-team/GAMLET)
<!-- [![codecov](https://codecov.io/gh/ITMO-NSS-team/GAMLET/graph/badge.svg?token=N3Z9YTPHP9)](https://codecov.io/gh/ITMO-NSS-team/GAMLET) -->
[![Visitors](https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2Fgithub.com%2FITMO-NSS-team%2FMetaFEDOT&countColor=%23263759&style=plastic&labelStyle=lower)](https://visitorbadge.io/status?path=https%3A%2F%2Fgithub.com%2FITMO-NSS-team%2FMetaFEDOT)

GAMLET (previously known as MetaFEDOT) is an open platform for sharing meta-learning experiences in **AutoML** and more
Expand Down
7 changes: 0 additions & 7 deletions tests/unit/surrogate/test_surrogate_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,3 @@ def get_test_data():
x_pipe = torch.load(path / 'data_pipe_test.pt')
x_dset = torch.load(path / 'data_dset_test.pt')
return x_pipe, x_dset


def test_model_output(read_config):
x_pipe, x_dset = get_test_data()
model = create_model_from_config(read_config, x_pipe, x_dset)
pred = torch.squeeze(model.forward(x_pipe, x_dset))
assert pred.shape[0] == 256

0 comments on commit 295c7e2

Please sign in to comment.