Skip to content

Commit

Permalink
Hardcoded the type of the algorithm (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
KFilippopolitis authored Apr 16, 2024
1 parent 59ca41f commit 3e1bfd7
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ public record Exareme2AlgorithmRequestDTO(
String request_id,
Exareme2InputDataRequestDTO inputdata,
Map<String, Object> parameters,
Map<String, Object> preprocessing
Map<String, Object> preprocessing,
String type
) {

public Exareme2AlgorithmRequestDTO(
Expand All @@ -23,7 +24,8 @@ public Exareme2AlgorithmRequestDTO(
experimentUUID.toString(),
getInputData(exaremeAlgorithmRequestParamDTOs),
getParameters(exaremeAlgorithmRequestParamDTOs, exareme2AlgorithmSpecificationDTO),
getPreprocessing(exaremeTransformers, exareme2AlgorithmSpecificationDTO)
getPreprocessing(exaremeTransformers, exareme2AlgorithmSpecificationDTO),
"exareme2"
);
}

Expand Down

0 comments on commit 3e1bfd7

Please sign in to comment.