Commit Graph

30 Commits

Author SHA1 Message Date
Connor McCarthy b0cccfee94 fix(components): include model version in upload model output artifact (fix)
PiperOrigin-RevId: 567695541
2023-09-22 12:55:52 -07:00
Connor McCarthy 1fbdeb2abf chore(components): fix GCPC markdown docstrings rendering
PiperOrigin-RevId: 565397565
2023-09-14 09:51:07 -07:00
Connor McCarthy 3fb199658f chore(components): convert GCPC docstrings to markdown
PiperOrigin-RevId: 562015575
2023-09-01 12:12:27 -07:00
Connor McCarthy 88e1045c11 feat(components): use GCPC project id placeholder as project parameter default
PiperOrigin-RevId: 556844000
2023-08-14 10:50:12 -07:00
Connor McCarthy 5a0e2bdef0 fix(components): fix parent_model parameter of ModelUploadOp ignored
PiperOrigin-RevId: 547942553
2023-07-13 15:28:03 -07:00
Connor McCarthy c9ac92d630 docs(components): update model components documentation
PiperOrigin-RevId: 540368167
2023-06-14 13:45:23 -07:00
Googler b001d7dfe1 docs(components): support passing in pipeline job id to upload model component
PiperOrigin-RevId: 540287838
2023-06-14 09:07:26 -07:00
Connor McCarthy 2b29b5112b docs(components): additional GCPC reference documentation change
PiperOrigin-RevId: 535444551
2023-05-25 17:42:12 -07:00
Connor McCarthy 25e686a820 docs(components): tidy GCPC component docstrings and fix signature rendering
PiperOrigin-RevId: 534479156
2023-05-23 10:46:42 -07:00
Connor McCarthy 8979a9da9f chore(components): control GCPC image tag via project-level variable
PiperOrigin-RevId: 533223430
2023-05-18 12:59:57 -07:00
Connor McCarthy 7d414338c8 chore(components): format all docstrings
PiperOrigin-RevId: 531226831
2023-05-11 09:36:47 -07:00
Connor McCarthy fd363326d9 chore(components): remove type annotation information from docstring
PiperOrigin-RevId: 531218966
2023-05-11 09:06:20 -07:00
Connor McCarthy 0a787afff3 chore(components): use programmatically generated artifact placeholders
PiperOrigin-RevId: 530620105
2023-05-09 08:48:40 -07:00
Connor McCarthy c9b656fc43 chore(components): normalize Python module docstrings
PiperOrigin-RevId: 530467483
2023-05-08 18:58:25 -07:00
Connor McCarthy 23d22d6cf6 chore(components): remove all unused imports in GCPC
PiperOrigin-RevId: 530364586
2023-05-08 11:52:32 -07:00
Connor McCarthy 8f81d9599d chore(components): convert all GCPC imports to absolute imports
PiperOrigin-RevId: 530362188
2023-05-08 11:38:57 -07:00
Connor McCarthy ace6f2f61a chore(components): replace GCPC image with latest version
PiperOrigin-RevId: 530319759
2023-05-08 09:11:46 -07:00
Connor McCarthy 91111e1f91 chore(components): migrate ModelDeleteOp to KFP v2 Container Component
PiperOrigin-RevId: 529187184
2023-05-03 13:53:41 -07:00
Connor McCarthy ea1bc9b5bf chore(components): migrate aiplatform.model and aiplatform.endpoint components to v1 namespace
PiperOrigin-RevId: 526757962
2023-04-24 14:37:50 -07:00
Connor McCarthy 183313c8c9 chore(components): format gcpc source code
PiperOrigin-RevId: 521912902
2023-04-04 17:55:33 -07:00
Connor McCarthy b7cf2c4625 chore(components): update and normalize GCPC v1 components module docstrings
PiperOrigin-RevId: 521030880
2023-03-31 15:53:37 -07:00
Yang Pan ce39397096 chore(component): change launcher image from `latest` to a fixed version (2.0.0b1 in this case)
PiperOrigin-RevId: 519306368
2023-03-24 20:58:41 -07:00
Yang Pan 190abd4fa4 chore(components): Reformat the v1 doc
PiperOrigin-RevId: 507296615
2023-02-05 10:22:53 -08:00
You Quan Chong 834d966033 feat(components): Create GCPC v2 beta
PiperOrigin-RevId: 501684875
2023-01-12 15:38:35 -08:00
Kevin Naughton 94bdce8a32 feat(components): Support uploading for model versions for ModelUploadOp
PiperOrigin-RevId: 490354372
2022-11-22 15:42:22 -08:00
You Quan Chong 648c0eebc8 chore(components): Convert v1 endpoint and model components into individual launchers and remote runners
PiperOrigin-RevId: 476983194
2022-09-26 13:54:34 -07:00
You Quan Chong 80199bf2ca chore(components): Import importer from dsl namespace instead
PiperOrigin-RevId: 470317367
2022-08-26 13:14:14 -07:00
Rui Fang 1664895983 fix(component): update the missing doc of returns in export_model component
PiperOrigin-RevId: 469863030
2022-08-24 17:17:54 -07:00
Yang Pan 973872626f feat(components): cleanup the deprecated fields in v1 model upload component.
To migrate the component, use an importer node to create a unmanaged model artifact

```
  importer_spec = importer_node.importer(
      artifact_uri='gs://managed-pipeline-gcpc-e2e-test/automl-tabular/model',
      artifact_class=artifact_types.UnmanagedContainerModel,
      metadata={
          'containerSpec': {
              'imageUri':
                  'us-docker.pkg.dev/vertex-ai/automl-tabular/prediction-server:prod'
          }
      })

 model_upload_with_artifact_op = model.ModelUploadOp(
      project=_GCP_PROJECT_ID,
      location=_GCP_REGION,
      display_name=_MODEL_DISPLAY_NAME,
      unmanaged_container_model=importer_spec.outputs['artifact'],
      encryption_spec_key_name=_CMEK_KEY)

```

PiperOrigin-RevId: 429190346
2022-02-16 18:33:28 -08:00
Yang Pan 5baa4879a9 feat(components): create gcpc v1.
PiperOrigin-RevId: 428096529
2022-02-11 14:53:29 -08:00