Skip to content

Commit

Permalink
updates needed to handle updates to the ut repos
Browse files Browse the repository at this point in the history
  • Loading branch information
jpswinski committed Oct 23, 2024
1 parent 3b01c05 commit 433936c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion datasets/bathy/package/BathyCoastnetClassifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
* INCLUDES
******************************************************************************/

#include <ATL24_coastnet/precompiled.h>
#include <ATL24_coastnet/utils.h>
#include <ATL24_coastnet/coastnet.h>

Expand Down Expand Up @@ -144,7 +145,7 @@ bool BathyCoastnetClassifier::run (GeoDataFrame* dataframe)

// Run classification
const string model_filename = FString("%s/%s", ContainerRunner::HOST_DIRECTORY, args.model.value.c_str()).c_str();
const auto results = classify (args.verbose, samples, model_filename, false);
const auto results = classify (args.verbose, samples, model_filename);

// Update extents
for(size_t i = 0; i < number_of_samples; i++)
Expand Down
2 changes: 1 addition & 1 deletion datasets/bathy/package/BathyOpenOceansPPClassifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ bool BathyOpenOceansPPClassifier::run (GeoDataFrame* dataframe)

// Run classification
const oopp::params params;
samples = classify (samples, params, false);
samples = classify (samples, params);

// Update extents
for(size_t i = 0; i < number_of_samples; i++)
Expand Down

0 comments on commit 433936c

Please sign in to comment.