Skip to content

Commit

Permalink
auto config mapping #5381 (#5455)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvince2 authored Nov 11, 2024
1 parent 1978c9c commit 6eedac0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/client/hmi-client/src/services/concept.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,7 @@ const autoCalibrationMapping = async (modelOptions: State[], datasetOptions: Dat

// Fill targetEntities with datasetOptions
datasetOptions.forEach((col) => {
const groundings = col.metadata?.groundings?.identifiers
? Object.entries(col.metadata.groundings.identifiers).map((ele) => ele.join(':'))
: undefined;
const groundings = col.grounding?.identifiers?.map((id) => id.curie);
targetEntities.push({ id: col.name, groundings });
});

Expand Down

0 comments on commit 6eedac0

Please sign in to comment.