Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions model_api/cpp/tilers/include/tilers/tiler_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class TilerBase {
public:
TilerBase(const std::shared_ptr<ImageModel>& model,
const ov::AnyMap& configuration,
ExecutionMode exec_mode = ExecutionMode::async);
ExecutionMode exec_mode = ExecutionMode::sync);

virtual ~TilerBase() = default;

Expand All @@ -43,5 +43,5 @@ class TilerBase {
float tiles_overlap = 0.5f;
float iou_threshold = 0.45f;
bool tile_with_full_img = true;
ExecutionMode run_mode = ExecutionMode::async;
ExecutionMode run_mode = ExecutionMode::sync;
};
Loading