forked from akvelon/beam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request apache#21809 from ihji/BEAM-14506
[BEAM-14506] Adding testcases and examples for xlang Python RunInference
- Loading branch information
Showing
6 changed files
with
200 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
102 changes: 102 additions & 0 deletions
102
...s/python/src/main/java/org/apache/beam/sdk/extensions/python/transforms/RunInference.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.beam.sdk.extensions.python.transforms; | ||
|
||
import java.util.Map; | ||
import org.apache.beam.sdk.coders.RowCoder; | ||
import org.apache.beam.sdk.extensions.python.PythonExternalTransform; | ||
import org.apache.beam.sdk.schemas.Schema; | ||
import org.apache.beam.sdk.transforms.PTransform; | ||
import org.apache.beam.sdk.util.PythonCallableSource; | ||
import org.apache.beam.sdk.values.PCollection; | ||
import org.apache.beam.sdk.values.Row; | ||
import org.apache.beam.vendor.guava.v26_0_jre.com.google.common.collect.ImmutableMap; | ||
|
||
/** Wrapper for invoking external Python RunInference. */ | ||
public class RunInference extends PTransform<PCollection<?>, PCollection<Row>> { | ||
private final String modelLoader; | ||
private final Schema schema; | ||
private final Map<String, Object> kwargs; | ||
private final String expansionService; | ||
|
||
/** | ||
* Instantiates a multi-language wrapper for a Python RunInference with a given model loader. | ||
* | ||
* @param modelLoader A Python callable for a model loader class object. | ||
* @param exampleType A schema field type for the example column in output rows. | ||
* @param inferenceType A schema field type for the inference column in output rows. | ||
* @return A {@link RunInference} for the given model loader. | ||
*/ | ||
public static RunInference of( | ||
String modelLoader, Schema.FieldType exampleType, Schema.FieldType inferenceType) { | ||
Schema schema = | ||
Schema.of( | ||
Schema.Field.of("example", exampleType), Schema.Field.of("inference", inferenceType)); | ||
return new RunInference(modelLoader, schema, ImmutableMap.of(), ""); | ||
} | ||
|
||
/** | ||
* Instantiates a multi-language wrapper for a Python RunInference with a given model loader. | ||
* | ||
* @param modelLoader A Python callable for a model loader class object. | ||
* @param schema A schema for output rows. | ||
* @return A {@link RunInference} for the given model loader. | ||
*/ | ||
public static RunInference of(String modelLoader, Schema schema) { | ||
return new RunInference(modelLoader, schema, ImmutableMap.of(), ""); | ||
} | ||
|
||
/** | ||
* Sets keyword arguments for the model loader. | ||
* | ||
* @return A {@link RunInference} with keyword arguments. | ||
*/ | ||
public RunInference withKwarg(String key, Object arg) { | ||
ImmutableMap.Builder<String, Object> builder = | ||
ImmutableMap.<String, Object>builder().putAll(kwargs).put(key, arg); | ||
return new RunInference(modelLoader, schema, builder.build(), expansionService); | ||
} | ||
|
||
/** | ||
* Sets an expansion service endpoint for RunInference. | ||
* | ||
* @param expansionService A URL for a Python expansion service. | ||
* @return A {@link RunInference} for the given expansion service endpoint. | ||
*/ | ||
public RunInference withExpansionService(String expansionService) { | ||
return new RunInference(modelLoader, schema, kwargs, expansionService); | ||
} | ||
|
||
private RunInference( | ||
String modelLoader, Schema schema, Map<String, Object> kwargs, String expansionService) { | ||
this.modelLoader = modelLoader; | ||
this.schema = schema; | ||
this.kwargs = kwargs; | ||
this.expansionService = expansionService; | ||
} | ||
|
||
@Override | ||
public PCollection<Row> expand(PCollection<?> input) { | ||
return input.apply( | ||
PythonExternalTransform.<PCollection<?>, PCollection<Row>>from( | ||
"apache_beam.ml.inference.base.RunInference.from_callable", expansionService) | ||
.withKwarg("model_handler_provider", PythonCallableSource.of(modelLoader)) | ||
.withKwargs(kwargs) | ||
.withOutputCoder(RowCoder.of(schema))); | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
...test/java/org/apache/beam/sdk/extensions/python/transforms/RunInferenceTransformTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.beam.sdk.extensions.python.transforms; | ||
|
||
import java.util.Arrays; | ||
import java.util.Optional; | ||
import org.apache.beam.runners.core.construction.BaseExternalTest; | ||
import org.apache.beam.sdk.coders.IterableCoder; | ||
import org.apache.beam.sdk.coders.VarLongCoder; | ||
import org.apache.beam.sdk.schemas.Schema; | ||
import org.apache.beam.sdk.testing.PAssert; | ||
import org.apache.beam.sdk.testing.UsesPythonExpansionService; | ||
import org.apache.beam.sdk.testing.ValidatesRunner; | ||
import org.apache.beam.sdk.transforms.Create; | ||
import org.apache.beam.sdk.values.PCollection; | ||
import org.apache.beam.sdk.values.Row; | ||
import org.junit.Test; | ||
import org.junit.experimental.categories.Category; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.JUnit4; | ||
|
||
@RunWith(JUnit4.class) | ||
public class RunInferenceTransformTest extends BaseExternalTest { | ||
@Test | ||
@Category({ValidatesRunner.class, UsesPythonExpansionService.class}) | ||
public void testRunInference() { | ||
String stagingLocation = | ||
Optional.ofNullable(System.getProperty("semiPersistDir")).orElse("/tmp"); | ||
Schema schema = | ||
Schema.of( | ||
Schema.Field.of("example", Schema.FieldType.array(Schema.FieldType.INT64)), | ||
Schema.Field.of("inference", Schema.FieldType.INT32)); | ||
Row row0 = Row.withSchema(schema).addArray(0L, 0L).addValue(0).build(); | ||
Row row1 = Row.withSchema(schema).addArray(1L, 1L).addValue(1).build(); | ||
PCollection<Row> col = | ||
testPipeline | ||
.apply(Create.<Iterable<Long>>of(Arrays.asList(0L, 0L), Arrays.asList(1L, 1L))) | ||
.setCoder(IterableCoder.of(VarLongCoder.of())) | ||
.apply( | ||
RunInference.of( | ||
"apache_beam.ml.inference.sklearn_inference.SklearnModelHandlerNumpy", | ||
schema) | ||
.withKwarg( | ||
// The test expansion service creates the test model and saves it to the | ||
// returning external environment as a dependency. | ||
// (sdks/python/apache_beam/runners/portability/expansion_service_test.py) | ||
// The dependencies for Python SDK harness are supposed to be staged to | ||
// $SEMI_PERSIST_DIR/staged directory. | ||
"model_uri", String.format("%s/staged/sklearn_model", stagingLocation)) | ||
.withExpansionService(expansionAddr)); | ||
PAssert.that(col).containsInAnyOrder(row0, row1); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters