Skip to content

Commit b9d80ac

Browse files
committed
[CIBUILD] rename
1 parent 6e1c1b7 commit b9d80ac

File tree

380 files changed

+1897
-1860
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

380 files changed

+1897
-1860
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
ARG IMAGE_TYPE=latest-cpu
2-
FROM tfaddons/dev_container:$IMAGE_TYPE
2+
FROM hailinfufu/deepray:$IMAGE_TYPE

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"python.linting.flake8Enabled": true,
1818
"python.testing.pytestEnabled": true,
1919
"python.testing.pytestArgs": [
20-
"./tensorflow_addons"
20+
"./deepray"
2121
],
2222
"C_Cpp.clang_format_style": "{BasedOnStyle: Google}",
2323
"C_Cpp.default.includePath": [
@@ -54,6 +54,6 @@
5454
"--security-opt",
5555
"seccomp=unconfined" ],
5656

57-
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/pytest ./tensorflow_addons/layerscontainers/non-root.
57+
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/pytest ./deepray/layerscontainers/non-root.
5858
//"remoteUser": "vscode"
5959
}

.flake8

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ per-file-ignores =
2121
# imported but unused in __init__.py, that's ok.
2222
**/__init__.py:F401
2323
# import not at top okay due to TF installation check
24-
tensorflow_addons/__init__.py:F401,E402
24+
deepray/__init__.py:F401,E402
2525
# function name should be lowercase
26-
tensorflow_addons/image/utils.py:N802
27-
tensorflow_addons/image/tests/utils_test.py:N802
28-
tensorflow_addons/image/tests/color_ops_test.py:N802
29-
tensorflow_addons/optimizers/tests/conditional_gradient_test.py:N802
26+
deepray/image/utils.py:N802
27+
deepray/image/tests/utils_test.py:N802
28+
deepray/image/tests/color_ops_test.py:N802
29+
deepray/optimizers/tests/conditional_gradient_test.py:N802
3030
# variable ... in function should be lowercase
31-
tensorflow_addons/callbacks/tests/time_stopping_test.py:N806
31+
deepray/callbacks/tests/time_stopping_test.py:N806

.github/CODEOWNERS

Lines changed: 177 additions & 177 deletions
Large diffs are not rendered by default.

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ about: Use this template for raising a feature request
88

99
**Relevant information**
1010
- Are you willing to contribute it (yes/no):
11-
*If you wish to contribute, then read the requirements for new contributions in [`CONTRIBUTING.md`](https://github.com/tensorflow/addons/blob/master/CONTRIBUTING.md#requirements-for-new-contributions-to-the-repository)*
11+
*If you wish to contribute, then read the requirements for new contributions in [`CONTRIBUTING.md`](https://github.com/tensorflow/deepray/blob/master/CONTRIBUTING.md#requirements-for-new-contributions-to-the-repository)*
1212
- Are you willing to maintain it going forward? (yes/no):
1313
- Is there a relevant academic paper? (if so, where):
1414
- Does the relavent academic paper exceed 50 citations? (yes/no):

.github/boring-cyborg.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
labelPRBasedOnFilePath:
22
# Subpackages
33
activations:
4-
- tensorflow_addons/activations/**/*
4+
- deepray/activations/**/*
55

66
callbacks:
7-
- tensorflow_addons/callbacks/**/*
7+
- deepray/callbacks/**/*
88

99
custom-ops:
10-
- tensorflow_addons/custom_ops/**/*
10+
- deepray/custom_ops/**/*
1111

1212
image:
13-
- tensorflow_addons/image/**/*
13+
- deepray/image/**/*
1414

1515
layers:
16-
- tensorflow_addons/layers/**/*
16+
- deepray/layers/**/*
1717

1818
losses:
19-
- tensorflow_addons/losses/**/*
19+
- deepray/losses/**/*
2020

2121
metrics:
22-
- tensorflow_addons/metrics/**/*
22+
- deepray/metrics/**/*
2323

2424
optimizers:
25-
- tensorflow_addons/optimizers/**/*
25+
- deepray/optimizers/**/*
2626

2727
seq2seq:
28-
- tensorflow_addons/seq2seq/**/*
28+
- deepray/seq2seq/**/*
2929

3030
text:
31-
- tensorflow_addons/text/**/*
31+
- deepray/text/**/*
3232

3333
# Other labels
3434
build:

.github/pull_request_template.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ Fixes # (issue)
1010
- [ ] New Tutorial
1111
- [ ] Updated or additional documentation
1212
- [ ] Additional Testing
13-
- [ ] New Activation and the changes conform to the [activation contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/activations/README.md#contribution-guidelines)
14-
- [ ] New Callback and the changes conform to the [callback contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/callbacks/README.md#contribution-guidelines)
15-
- [ ] New Image addition and the changes conform to the [image op contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/image/README.md#contribution-guidelines)
16-
- [ ] New Layer and the changes conform to the [layer contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/layers/README.md#contribution-guidelines)
17-
- [ ] New Loss and the changes conform to the [loss contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/losses/README.md#contribution-guidelines)
18-
- [ ] New Metric and the changes conform to the [metric contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/metrics/README.md#contribution-guidelines)
19-
- [ ] New Optimizer and the changes conform to the [optimizer contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/optimizers/README.md#contribution-guidelines)
20-
- [ ] New RNN Cell and the changes conform to the [rnn contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/rnn/README.md#contribution-guidelines)
21-
- [ ] New Seq2seq addition and the changes conform to the [seq2seq contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/seq2seq/README.md#contribution-guidelines)
22-
- [ ] New Text addition and the changes conform to the [text op contribution guidelines](https://github.com/tensorflow/addons/blob/master/tensorflow_addons/text/README.md#contribution-guidelines)
13+
- [ ] New Activation and the changes conform to the [activation contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/activations/README.md#contribution-guidelines)
14+
- [ ] New Callback and the changes conform to the [callback contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/callbacks/README.md#contribution-guidelines)
15+
- [ ] New Image addition and the changes conform to the [image op contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/image/README.md#contribution-guidelines)
16+
- [ ] New Layer and the changes conform to the [layer contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/layers/README.md#contribution-guidelines)
17+
- [ ] New Loss and the changes conform to the [loss contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/losses/README.md#contribution-guidelines)
18+
- [ ] New Metric and the changes conform to the [metric contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/metrics/README.md#contribution-guidelines)
19+
- [ ] New Optimizer and the changes conform to the [optimizer contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/optimizers/README.md#contribution-guidelines)
20+
- [ ] New RNN Cell and the changes conform to the [rnn contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/rnn/README.md#contribution-guidelines)
21+
- [ ] New Seq2seq addition and the changes conform to the [seq2seq contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/seq2seq/README.md#contribution-guidelines)
22+
- [ ] New Text addition and the changes conform to the [text op contribution guidelines](https://github.com/tensorflow/deepray/blob/master/deepray/text/README.md#contribution-guidelines)
2323

2424
# Checklist:
2525

26-
- [ ] I've properly [formatted my code according to the guidelines](https://github.com/tensorflow/addons/blob/master/CONTRIBUTING.md#coding-style)
26+
- [ ] I've properly [formatted my code according to the guidelines](https://github.com/tensorflow/deepray/blob/master/CONTRIBUTING.md#coding-style)
2727
- [ ] By running Black + Flake8
2828
- [ ] By running pre-commit hooks
29-
- [ ] This PR addresses an already submitted issue for TensorFlow Addons
29+
- [ ] This PR addresses an already submitted issue for Deepray
3030
- [ ] I have made corresponding changes to the documentation
3131
- [ ] I have added tests that prove my fix is effective or that my feature works
3232
- [ ] This PR contains modifications to C++ custom-ops

.github/workflows/ci_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- uses: actions/checkout@v2
7878
- run: pip install --default-timeout=1000 -r tools/install_deps/tensorflow-cpu.txt -r tools/install_deps/pytest.txt
7979
- run: pip install -e ./
80-
- run: pytest -v -n auto --skip-custom-ops ./tensorflow_addons
80+
- run: pytest -v -n auto --skip-custom-ops ./deepray
8181
test_cpu_in_small_docker_image:
8282
name: Run the cpu tests in a small python docker image
8383
runs-on: ubuntu-latest
@@ -111,5 +111,5 @@ jobs:
111111
# Run on all notebooks to prevent upstream change.
112112
echo "Lint check with nblint:"
113113
python3 -m tensorflow_docs.tools.nblint \
114-
--arg=repo:tensorflow/addons \
114+
--arg=repo:tensorflow/deepray \
115115
$(find docs/tutorials/ -type f -name *.ipynb ! -path "docs/tutorials/_template.ipynb")

.github/workflows/notify_codeowners.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Github already take care
1313
# of notifying users with write access
1414
WRITE_ACCESS_LIST = [
15-
"tensorflow/sig-addons-maintainers",
15+
"tensorflow/sig-deepray-maintainers",
1616
"facaiy",
1717
"seanpmorgan",
1818
"squadrick",
@@ -165,7 +165,7 @@ def notify_codeowners(pull_request_id, no_dry_run):
165165
if pull_request_id == "auto":
166166
pull_request_id = get_pull_request_id_from_gh_actions()
167167
pull_request_id = int(pull_request_id)
168-
pull_request = CLIENT.get_repo("tensorflow/addons").get_pull(pull_request_id)
168+
pull_request = CLIENT.get_repo("tensorflow/deepray").get_pull(pull_request_id)
169169
msg = craft_message(codeowners, pull_request)
170170
print(msg)
171171
if no_dry_run and msg is not None:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
pip install --default-timeout=1000 -r tools/install_deps/pytest.txt -r tools/install_deps/tensorflow-cpu.txt -r requirements.txt
3333
bash tools/install_deps/install_bazelisk.sh ./
3434
python configure.py
35-
bazel test -k --test_timeout 300,450,1200,3600 --test_output=errors //tensorflow_addons/...
35+
bazel test -k --test_timeout 300,450,1200,3600 --test_output=errors //deepray/...
3636
release-wheel:
3737
name: Test and build release wheels
3838
runs-on: ${{ matrix.os }}
@@ -146,4 +146,4 @@ jobs:
146146
set -e -x
147147
echo ${{ secrets.DOCKER_PW }} | docker login --username ${{ secrets.DOCKER_USER }} --password-stdin
148148
bash .github/workflows/github_build_dev_container.sh
149-
docker push tfaddons/dev_container:latest-gpu
149+
docker push hailinfufu/deepray:latest-gpu

BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ sh_binary(
66
"MANIFEST.in",
77
"requirements.txt",
88
"setup.py",
9-
"//tensorflow_addons",
9+
"//deepray",
1010
],
1111
)

0 commit comments

Comments
 (0)