Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support for modelarts adapter #260

Open
wants to merge 10 commits into
base: ct-park-poc
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
go-version: 1.16.x

- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
go-version: 1.16.x

- uses: actions/cache@v2
with:
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
go-version: 1.16.x

- uses: actions/cache@v2
with:
Expand All @@ -102,7 +102,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
go-version: 1.16.x

- uses: actions/cache@v2
with:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
go-version: 1.16.x

- uses: actions/cache@v2
with:
Expand All @@ -159,7 +159,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
go-version: 1.16.x

- uses: actions/cache@v2
with:
Expand All @@ -171,4 +171,4 @@ jobs:
with:
fetch-depth: 0

- run: make docker-cross-build
- run: make docker-cross-build
2 changes: 1 addition & 1 deletion build/gm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Add cross buildx improvement
# _speed_buildx_for_go_
FROM golang:1.14-alpine3.11 AS builder
FROM golang:1.16-alpine3.15 AS builder
LABEL stage=builder

ARG GO_LDFLAGS
Expand Down
2 changes: 1 addition & 1 deletion build/lc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Add cross buildx improvement
# LC has built sqlite3 which requires CGO with CGO_ENABLED=1
# _speed_buildx_for_cgo_alpine_
FROM golang:1.14-alpine3.11 AS builder
FROM golang:1.16-alpine3.15 AS builder
LABEL stage=builder

ARG GO_LDFLAGS
Expand Down
2 changes: 1 addition & 1 deletion docs/api/lib/index.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
===========================================
Sedna Python SDK
Python API Use Guide
===========================================

.. mdinclude:: ../../../lib/sedna/README.md
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# -- Project information -----------------------------------------------------

project = 'Sedna'
copyright = '2020, Kubeedge'
copyright = '2021, Kubeedge'
author = 'Kubeedge'

version = __version__
Expand Down
48 changes: 23 additions & 25 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,24 @@ Sedna is an edge-cloud synergy AI project incubated in KubeEdge SIG AI. Benefiti

Sedna can simply enable edge-cloud synergy capabilities to existing training and inference scripts, bringing the benefits of reducing costs, improving model performance, and protecting data privacy.


.. toctree::
:maxdepth: 1
:caption: QUICK START
:caption: GUIDE

quickstart
index/guide
index/quickstart


.. toctree::
:maxdepth: 1
:titlesonly:
:glob:
:caption: DEPLOY

Cluster Installation (for production) <setup/install>
AllinOne Installation (for development) <setup/all-in-one>
Standalone Installation (for hello world) <setup/local-up>


.. toctree::
Expand All @@ -31,34 +44,28 @@ Sedna can simply enable edge-cloud synergy capabilities to existing training and
proposals/object-tracking


.. toctree::
:maxdepth: 1
:titlesonly:
:glob:
:caption: DEPLOY

Installtion <setup/install>
Standalone <setup/local-up>

.. toctree::
:maxdepth: 1
:glob:
:caption: EXAMPLES

examples/federated_learning/surface_defect_detection/README
examples/incremental_learning/helmet_detection/README
examples/joint_inference/helmet_detection_inference/README
examples/incremental_learning/helmet_detection/README
examples/federated_learning/surface_defect_detection/README
examples/federated_learning/yolov5_coco128_mistnet/README
examples/lifelong_learning/atcii/README
examples/storage/s3/*


.. toctree::
:maxdepth: 1
:caption: API
:caption: API REFERENCE
:titlesonly:
:glob:

api/lib/*
Python API <autoapi/lib/sedna/index>


.. toctree::
:maxdepth: 1
Expand All @@ -69,26 +76,17 @@ Sedna can simply enable edge-cloud synergy capabilities to existing training and
Control Plane <contributing/prepare-environment>


.. toctree::
:maxdepth: 1
:caption: API REFERENCE
:titlesonly:
:glob:

autoapi/lib/sedna/index


.. toctree::
:caption: ROADMAP
:hidden:

roadmap
index/roadmap


RELATED LINKS
=============

.. mdinclude:: related_link.md
.. mdinclude:: index/related_link.md

Indices and tables
==================
Expand Down
24 changes: 24 additions & 0 deletions docs/index/guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## Guide
- If you are new to Sedna, you can try the command step by step in [quick start](./quickstart.md).
- If you have played the above example, you can find more [examples](/examples/README.md).
- If you want to know more about sedna's architecture and component, you can find them in [sedna home].
- If you're looking to contribute documentation improvements, you'll specifically want to see the [kubernetes documentation style guide] before [filing an issue][file-an-issue].
- If you're planning to contribute code changes, you'll want to read the [development preparation guide] next.
- If you're planning to add a new synergy feature directly, you'll want to read the [guide][add-feature-guide] next.


[proposals]: /docs/proposals
[development preparation guide]: ../contributing/prepare-environment.md
[add-feature-guide]: ../contributing/control-plane/add-a-new-synergy-feature.md

[sedna home]: https://github.com/kubeedge/sedna
[issues]: https://github.com/kubeedge/sedna/issues
[file-an-issue]: https://github.com/kubeedge/sedna/issues/new/choose
[file-a-fr]: https://github.com/kubeedge/sedna/issues/new?labels=kind%2Ffeature&template=enhancement.md

[github]: https://github.com/
[kubernetes documentation style guide]: https://github.com/kubernetes/community/blob/master/contributors/guide/style-guide.md
[recommended Git workflow]: https://github.com/kubernetes/community/blob/master/contributors/guide/github-workflow.md#workflow
[pull request best practices]: https://github.com/kubernetes/community/blob/master/contributors/guide/pull-requests.md#best-practices-for-faster-reviews
[Kubernetes help wanted]: https://www.kubernetes.dev/docs/guide/help-wanted/

File renamed without changes.
Loading