use of com.google.cloud.aiplatform.v1.Model in project java-automl by googleapis.
the class PredictionApiIT method setUp.
@Before
public void setUp() throws IOException, ExecutionException, InterruptedException, TimeoutException {
// Verify that the model is deployed for prediction
try (AutoMlClient client = AutoMlClient.create()) {
ModelName modelFullId = ModelName.of(PROJECT_ID, "us-central1", modelId);
Model model = client.getModel(modelFullId);
if (model.getDeploymentState() == Model.DeploymentState.UNDEPLOYED) {
// Deploy the model if not deployed
DeployModelRequest request = DeployModelRequest.newBuilder().setName(modelFullId.toString()).build();
Future future = client.deployModelAsync(request);
future.get(30, TimeUnit.MINUTES);
}
}
bout = new ByteArrayOutputStream();
out = new PrintStream(bout);
originalPrintStream = System.out;
System.setOut(out);
}
use of com.google.cloud.aiplatform.v1.Model in project java-automl by googleapis.
the class PredictionApiIT method setUp.
@Before
public void setUp() throws IOException, ExecutionException, InterruptedException, TimeoutException {
// Verify that the model is deployed for prediction
try (AutoMlClient client = AutoMlClient.create()) {
ModelName modelFullId = ModelName.of(PROJECT_ID, "us-central1", modelId);
Model model = client.getModel(modelFullId);
if (model.getDeploymentState() == Model.DeploymentState.UNDEPLOYED) {
// Deploy the model if not deployed
DeployModelRequest request = DeployModelRequest.newBuilder().setName(modelFullId.toString()).build();
Future future = client.deployModelAsync(request);
future.get(30, TimeUnit.MINUTES);
}
}
bout = new ByteArrayOutputStream();
out = new PrintStream(bout);
System.setOut(out);
}
use of com.google.cloud.aiplatform.v1.Model in project xtext-core by eclipse.
the class Bug299395TestLanguageSemanticSequencer method sequence.
@Override
public void sequence(ISerializationContext context, EObject semanticObject) {
EPackage epackage = semanticObject.eClass().getEPackage();
ParserRule rule = context.getParserRule();
Action action = context.getAssignedAction();
Set<Parameter> parameters = context.getEnabledBooleanParameters();
if (epackage == Bug299395Package.eINSTANCE)
switch(semanticObject.eClass().getClassifierID()) {
case Bug299395Package.MODEL:
sequence_Model(context, (Model) semanticObject);
return;
case Bug299395Package.SUB_MODEL:
sequence_SubModel(context, (SubModel) semanticObject);
return;
}
if (errorAcceptor != null)
errorAcceptor.accept(diagnosticProvider.createInvalidContextOrTypeDiagnostic(semanticObject, context));
}
use of com.google.cloud.aiplatform.v1.Model in project xtext-core by eclipse.
the class Bug305397SemanticSequencer method sequence.
@Override
public void sequence(ISerializationContext context, EObject semanticObject) {
EPackage epackage = semanticObject.eClass().getEPackage();
ParserRule rule = context.getParserRule();
Action action = context.getAssignedAction();
Set<Parameter> parameters = context.getEnabledBooleanParameters();
if (epackage == Bug305397Package.eINSTANCE)
switch(semanticObject.eClass().getClassifierID()) {
case Bug305397Package.ELEMENT:
sequence_Element(context, (Element) semanticObject);
return;
case Bug305397Package.MODEL:
sequence_Model(context, (Model) semanticObject);
return;
}
if (errorAcceptor != null)
errorAcceptor.accept(diagnosticProvider.createInvalidContextOrTypeDiagnostic(semanticObject, context));
}
use of com.google.cloud.aiplatform.v1.Model in project xtext-core by eclipse.
the class Bug250313Test method testSTRINGConversion_01.
@Test
public void testSTRINGConversion_01() throws Exception {
Model model = (Model) getModel("1 'str'");
assertEquals("str", model.getValue());
assertNotNull(lexerRule);
assertEquals("org.eclipse.xtext.common.Terminals.STRING", lexerRule);
assertTrue(node instanceof ILeafNode);
assertEquals("'str'", string);
assertEquals(1, convertCallCount);
}
Aggregations