Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jinay1991 committed Nov 1, 2020
1 parent 39f7cba commit c7be0be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spleeter/argument_parser/cli_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ struct CLIOptions

/// @brief Inference Engine Parameters (contains model_path, input/output tensor names)
InferenceEngineParameters inference_engine_params{
"external/models/5stems.tflite",
"external/models/5stems/5stems.tflite",
"waveform",
{"strided_slice_18", "strided_slice_38", "strided_slice_48", "strided_slice_28", "strided_slice_58"},
"spleeter:5stems"};
Expand All @@ -46,7 +46,7 @@ struct CLIOptions
double duration{600.0};

/// @brief Audio codec to be used for separate output
/// @todo v1.2 supports only *.wav
/// @todo Currently supports only *.wav, extend support to work with other audio codec
/// choices: { wav, mp3, ogg, m4a, wma, flac }
std::string codec{"wav"};

Expand Down
1 change: 1 addition & 0 deletions spleeter/test/separator_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class SeparatorTest : public ::testing::TestWithParam<std::int32_t>
protected:
void SetUp() override
{
cli_options_.output_path = "/tmp/separated_audio2";
const auto stem{std::to_string(GetParam()) + "stems"};
cli_options_.configuration = "spleeter:" + stem;
cli_options_.inference_engine_params.model_path = "external/models/" + stem + "/" + stem + ".tflite";
Expand Down

0 comments on commit c7be0be

Please sign in to comment.