Mikhail Urmich
Mikhail Urmich
Bump target and compile SDK to 32
I think it is more beneficial to have phonetics inside the meaning block. The same word is pronounced differently given a different meaning. For example - Object and objEct -...
The word wind has different pronunciations with different meanings. Given the link https://api.dictionaryapi.dev/api/v2/entries/en/wind WIND is pronounced as **/ˈwɪnd/**, but the phonetic is **/ˈwaɪnd/** In the second example of the word,...
### Expected Behavior When running unit test on a controller ```groovy class MyControllerTest extends Specification implements ControllerUnitTest, DataTest ``` I need to run unit tests for the controller ### Actual...
### Issue description I am migrating to the Grails 5.3.3 (from 2.5.6) Trying to run a Unit Test for my controllers I face the following exception: ``` java.lang.IllegalArgumentException: Class name...
Sometimes the response of a request might contain some _timestamp_ or _id_ or any other request specific fields. These fields shall be either ignored from comparison or deleted from the...
Similar to issue #426 Can it combine schemas before validating it? Given plugin 'kafka-schema-registry-maven-plugin' ```xml io.confluent kafka-schema-registry-maven-plugin 7.8.0 ${schema.registry.url} ${schema.path}/Order.avsc validate test-compatibility ``` Order and Product are the objects from...
### Description Text Similarity processes in batches ### Related Issues Resolves https://github.com/opensearch-project/ml-commons/issues/4276 ### Check List - [x] New functionality includes testing. - [ ] New functionality has been documented. -...
**Is your feature request related to a problem?** [TextSimilarityCrossEncoderModel](https://github.com/opensearch-project/ml-commons/blob/c04f537314e07c52f8d6f7b43ae5cf52756fd9ba/ml-algorithms/src/main/java/org/opensearch/ml/engine/algorithms/text_similarity/TextSimilarityCrossEncoderModel.java#L53) predictions are performed one by one inside a loop using `getPredictor().predict(input)` rather than processing the inputs in batches using `batchPredict(listOfInputs)` This...