Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/python-automl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.7.1
Choose a base ref
...
head repository: googleapis/python-automl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.8.0
Choose a head ref
  • 7 commits
  • 84 files changed
  • 4 contributors

Commits on Nov 7, 2019

  1. Configuration menu
    Copy the full SHA
    b071136 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2019

  1. Configuration menu
    Copy the full SHA
    59962e3 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2019

  1. fix(automl): fix uploading pandas dataframe to AutoML Tables (#9647)

    pandas.dataframe.to_csv() by default exports data index as an column
    with empty column name. This causes uploading the export csv file to
    fail because AutoML Tables does not allow empty column names. Given
    that the data index is not useful for training the model. This PR
    fixes the problem by setting the index argument to false so that the
    index is not exported.
    helinwang authored Nov 12, 2019
    Configuration menu
    Copy the full SHA
    8eabd74 View commit details
    Browse the repository at this point in the history
  2. feat(automl): expose disable_early_stopping option for create_model (…

    …#9779)
    
    Disable early stopping is turned off by default. It's defined in proto
    here:
    https://github.com/googleapis/google-cloud-python/blob/19ccb8527897caa9e4139a5c023a2e9b217a902b/automl/google/cloud/automl_v1beta1/proto/tables.proto#L196
    
    This PR:
    - exposes disable_early_stopping option for TablesClient.create_model.
    - changes the default value of create_model's parameter model_metadata
      from empty dict to None. Default parameter values in Python is
      non-intuitive: http://effbot.org/zone/default-values.htm
    helinwang authored Nov 12, 2019
    Configuration menu
    Copy the full SHA
    2305237 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2019

  1. feat(automl): add support for image classification, image object dete…

    …ction, text classification, text extraction; add `batch_predict`; add `deploy_model`, `undeploy_model`, `export_model`; add annotation specs (via synth) (#9628)
    yoshi-automation authored and busunkim96 committed Nov 13, 2019
    Configuration menu
    Copy the full SHA
    09b8d13 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    efb294e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    064e30e View commit details
    Browse the repository at this point in the history
Loading