Skip to content

Commit

Permalink
fix import in samples
Browse files Browse the repository at this point in the history
  • Loading branch information
negvet committed Jun 11, 2024
1 parent 661a5cf commit b9d80b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/run_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def insert_xai(args):
model = ov.Core().read_model(args.model_path)

# insert XAI branch
model_xai = openvino_xai.api.api.insert_xai(
model_xai = openvino_xai.insert_xai(
model,
task=xai.Task.CLASSIFICATION,
)
Expand Down Expand Up @@ -315,7 +315,7 @@ def insert_xai_w_params(args):
)

# insert XAI branch
model_xai = openvino_xai.api.api.insert_xai(
model_xai = openvino_xai.insert_xai(
model,
task=xai.Task.CLASSIFICATION,
insertion_parameters=insertion_parameters,
Expand Down

0 comments on commit b9d80b8

Please sign in to comment.