From cb3a29076f2e22fc3ed1a88195017796e1a1746c Mon Sep 17 00:00:00 2001 From: Tomoki Ohtsuki Date: Tue, 12 Jan 2021 10:00:39 +0900 Subject: [PATCH] Fix workflow & remove #include (#33) * Adding methods and checks. * More rigorous check for evaluator's shape * add ``concat`` method for ``UserTrainTestInteractionPair`` * Fix bug. * Improved documents and examples * Workflow modification * The first version for C++ slim * L2 only version. * It basically works. * It's erroneous now * optimized performance * Adding a doc * Doc fixed * added a test for cpp slim * C++-parallelized implementation of SLIM. (#29) * The first version for C++ slim * L2 only version. * It basically works. * optimized performance * Adding a doc * Doc fixed * added a test for cpp slim * Remove bits... * Importing jaxlib==0.1.58 fails. Specify 0.1.57 explicitly for now. --- .github/workflows/run-test.yml | 2 +- cpp_source/util.hpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run-test.yml b/.github/workflows/run-test.yml index b366129..c120164 100644 --- a/.github/workflows/run-test.yml +++ b/.github/workflows/run-test.yml @@ -22,7 +22,7 @@ jobs: - name: Run pytest run: | pip install pytest pytest-cov - pip install lightfm jaxlib jax dm-haiku optax + pip install lightfm jaxlib==0.1.57 jax dm-haiku optax pytest --cov=./irspack tests/ - name: Generate coverage (ubuntu) run: | diff --git a/cpp_source/util.hpp b/cpp_source/util.hpp index 25d9985..ecd3574 100644 --- a/cpp_source/util.hpp +++ b/cpp_source/util.hpp @@ -2,7 +2,6 @@ #include #include #include -#include #include #include #include