You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by WeichenXu123 <gi...@git.apache.org> on 2018/09/06 10:00:36 UTC

[GitHub] spark pull request #22349: [SPARK-25345][ML] Deprecate public APIs from Imag...

GitHub user WeichenXu123 opened a pull request:

    https://github.com/apache/spark/pull/22349

    [SPARK-25345][ML] Deprecate public APIs from ImageSchema

    ## What changes were proposed in this pull request?
    
    Deprecate public APIs from ImageSchema.
    
    ## How was this patch tested?
    
    N/A

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/WeichenXu123/spark image_api_deprecate

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/22349.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #22349
    
----
commit 23973218e73cd9ccafe07109cd066eee5aaef3cd
Author: WeichenXu <we...@...>
Date:   2018-09-06T09:58:14Z

    init pr

----


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2897/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    @WeichenXu123 Could you address the comments?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95831/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95751/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95817/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22349: [SPARK-25345][ML] Deprecate public APIs from Imag...

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22349#discussion_r215840879
  
    --- Diff: mllib/src/main/scala/org/apache/spark/ml/image/ImageSchema.scala ---
    @@ -35,6 +35,8 @@ import org.apache.spark.sql.types._
      */
     @Experimental
     @Since("2.3.0")
    +@deprecated("use `spark.read.format(\"image\").load(path)` and this `ImageSchema` will be " +
    --- End diff --
    
    There are other methods defined under `ImageSchema` that are not covered by the image data source. So we shall only deprecate `readImages` and leave other public methods as experimental. Same for Python.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22349: [SPARK-25345][ML] Deprecate public APIs from Imag...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22349#discussion_r215593840
  
    --- Diff: python/pyspark/ml/image.py ---
    @@ -20,6 +20,9 @@
     
         An attribute of this module that contains the instance of :class:`_ImageSchema`.
     
    +.. note:: Deprecated in 2.4.0. Use `spark.read.format("image").load(path)` instead and
    --- End diff --
    
    FYI, that datasource wouldn't be able to replace `toNDArray` and `toImage` which require numpy. Might be better leave a note that it needs manual conversion with NumPy API for both.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2896/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95796/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by mengxr <gi...@git.apache.org>.
Github user mengxr commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    LGTM. Merged into master and branch-2.4. Thanks!


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95817 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95817/testReport)** for PR 22349 at commit [`5cefd23`](https://github.com/apache/spark/commit/5cefd23b3842736632c29c40ece1a2251d56efaf).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95751 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95751/testReport)** for PR 22349 at commit [`38c33da`](https://github.com/apache/spark/commit/38c33dab80bbe1d998d068726b21e040e2f01adf).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22349: [SPARK-25345][ML] Deprecate public APIs from Imag...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22349#discussion_r216120953
  
    --- Diff: python/pyspark/ml/image.py ---
    @@ -222,7 +226,8 @@ def readImages(self, path, recursive=False, numPartitions=-1,
     
             .. versionadded:: 2.3.0
             """
    -
    +        warnings.warn("`ImageSchema.readImage` is deprecated. " +
    +                      "Use `spark.read.format(\"image\").load(path)` instead.")
    --- End diff --
    
    `warnings.warn(..., DeprecationWarning)`


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95817 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95817/testReport)** for PR 22349 at commit [`5cefd23`](https://github.com/apache/spark/commit/5cefd23b3842736632c29c40ece1a2251d56efaf).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95796 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95796/testReport)** for PR 22349 at commit [`f5a13a5`](https://github.com/apache/spark/commit/f5a13a5d04e97db21b8100d99a27e56ba467aae8).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95749 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95749/testReport)** for PR 22349 at commit [`2397321`](https://github.com/apache/spark/commit/23973218e73cd9ccafe07109cd066eee5aaef3cd).
     * This patch **fails Python style tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95796 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95796/testReport)** for PR 22349 at commit [`f5a13a5`](https://github.com/apache/spark/commit/f5a13a5d04e97db21b8100d99a27e56ba467aae8).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95749 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95749/testReport)** for PR 22349 at commit [`2397321`](https://github.com/apache/spark/commit/23973218e73cd9ccafe07109cd066eee5aaef3cd).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22349: [SPARK-25345][ML] Deprecate public APIs from Imag...

Posted by WeichenXu123 <gi...@git.apache.org>.
Github user WeichenXu123 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22349#discussion_r216117396
  
    --- Diff: python/pyspark/ml/image.py ---
    @@ -207,6 +207,9 @@ def readImages(self, path, recursive=False, numPartitions=-1,
             .. note:: If sample ratio is less than 1, sampling uses a PathFilter that is efficient but
                 potentially non-deterministic.
     
    +        .. note:: Deprecated in 2.4.0. Use `spark.read.format("image").load(path)` instead and
    --- End diff --
    
    added.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2928/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2940/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22349: [SPARK-25345][ML] Deprecate public APIs from Imag...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22349#discussion_r216120943
  
    --- Diff: python/pyspark/ml/image.py ---
    @@ -30,6 +30,7 @@
     from pyspark import SparkContext
     from pyspark.sql.types import Row, _create_row, _parse_datatype_json_string
     from pyspark.sql import DataFrame, SparkSession
    +import warnings
    --- End diff --
    
    Technically builtin package should be ordered above per PEP 8. I wonder why this is not caught.
    
    ```
    import sys
    import warnings
     
    import numpy as np
    
    from pyspark import SparkContext
    from pyspark.sql.types import Row, _create_row, _parse_datatype_json_string
    from pyspark.sql import DataFrame, SparkSession
    ```


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95751 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95751/testReport)** for PR 22349 at commit [`38c33da`](https://github.com/apache/spark/commit/38c33dab80bbe1d998d068726b21e040e2f01adf).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22349: [SPARK-25345][ML] Deprecate public APIs from Imag...

Posted by holdenk <gi...@git.apache.org>.
Github user holdenk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22349#discussion_r216026421
  
    --- Diff: python/pyspark/ml/image.py ---
    @@ -207,6 +207,9 @@ def readImages(self, path, recursive=False, numPartitions=-1,
             .. note:: If sample ratio is less than 1, sampling uses a PathFilter that is efficient but
                 potentially non-deterministic.
     
    +        .. note:: Deprecated in 2.4.0. Use `spark.read.format("image").load(path)` instead and
    --- End diff --
    
    Would it make sense to issue a warning when people call this code path (e.g. `warnings.warn`)? We do it in some of the other Python deprecated APIs but not all.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22349: [SPARK-25345][ML] Deprecate public APIs from Imag...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/22349


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2946/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95749/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95831 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95831/testReport)** for PR 22349 at commit [`576b7d8`](https://github.com/apache/spark/commit/576b7d8c5b1c1bf6419256bd6a9bfea894e31565).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    **[Test build #95831 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95831/testReport)** for PR 22349 at commit [`576b7d8`](https://github.com/apache/spark/commit/576b7d8c5b1c1bf6419256bd6a9bfea894e31565).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22349: [SPARK-25345][ML] Deprecate public APIs from ImageSchema

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22349
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org