This is an automated email from the ASF dual-hosted git repository.
markd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new c641aa9 [Systemds 3011] Project description to reflect the present
scope (#1431)
c641aa9 is described below
commit c641aa9c62c2872a1013706ff5bceb391b162e55
Author: Janardhan Pulivarthi <[email protected]>
AuthorDate: Tue Nov 2 19:15:12 2021 +0530
[Systemds 3011] Project description to reflect the present scope (#1431)
* [SYSTEMDS-3011] Project description to reflect the present scope
---
.asf.yaml | 3 ++-
README.md | 2 +-
docs/api/python/sources/index.rst.txt | 4 ++--
pom.xml | 4 ++--
src/main/python/setup.py | 2 +-
5 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/.asf.yaml b/.asf.yaml
index 2977880..6a6bb81 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -23,11 +23,12 @@
# https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features
github:
- description: "Apache SystemDS - A versatile system for the end-to-end data
science lifecycle"
+ description: "An open source ML system for the end-to-end data science
lifecycle"
homepage: https://systemds.apache.org/
labels:
- systemds
- java
+ - python
- dml
features:
diff --git a/README.md b/README.md
index e6d11ab..16ba064 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ limitations under the License.
# Apache SystemDS
-**Overview:** SystemDS is a versatile system for the end-to-end data science
lifecycle from data integration, cleaning,
+**Overview:** SystemDS is an open source ML system for the end-to-end data
science lifecycle from data integration, cleaning,
and feature engineering, over efficient, local and distributed ML model
training, to deployment and serving. To this
end, we aim to provide a stack of declarative languages with R-like syntax for
(1) the different tasks of the data-science
lifecycle, and (2) users with different expertise. These high-level scripts
are compiled into hybrid execution plans of
diff --git a/docs/api/python/sources/index.rst.txt
b/docs/api/python/sources/index.rst.txt
index bf4e154..2e77ec3 100644
--- a/docs/api/python/sources/index.rst.txt
+++ b/docs/api/python/sources/index.rst.txt
@@ -19,12 +19,12 @@
..
.. ------------------------------------------------------------
-SystemDS
+Apache SystemDS
========
This package provides a Pythonic interface for working with SystemDS.
-SystemDS is a versatile system for the end-to-end data science lifecycle from
data integration,
+SystemDS is an open source ML system for the end-to-end data science lifecycle
from data integration,
cleaning, and feature engineering, over efficient, local and distributed ML
model training,
to deployment and serving.
To facilitate this, bindings from different languages and different system
abstractions provide help for:
diff --git a/pom.xml b/pom.xml
index 1951001..0b230a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,9 +28,9 @@
<version>2.3.0-SNAPSHOT</version>
<artifactId>systemds</artifactId>
<packaging>jar</packaging>
- <name>SystemDS</name>
+ <name>Apache SystemDS</name>
<url>https://github.com/apache/systemds</url>
- <description>Declarative End-to-End Data Science</description>
+ <description>An open source ML system for the end-to-end data science
lifecycle</description>
<licenses>
<license>
<name>Apache 2.0 License</name>
diff --git a/src/main/python/setup.py b/src/main/python/setup.py
index 1f84694..84412ad 100755
--- a/src/main/python/setup.py
+++ b/src/main/python/setup.py
@@ -49,7 +49,7 @@ java_dir_full_path = python_dir + '/' + java_dir
setup(
name=ARTIFACT_NAME,
version=ARTIFACT_VERSION,
- description='SystemDS is a distributed and declarative machine learning
platform.',
+ description='Apache SystemDS - An open source ML system for the end-to-end
data science lifecycle',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/apache/systemds',