-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from RapidAI/wired_table_optim
Wired table optim
- Loading branch information
Showing
19 changed files
with
2,029 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,40 +35,40 @@ jobs: | |
pytest tests/test_lineless_table_rec.py | ||
GenerateWHL_PushPyPi: | ||
needs: UnitTesting | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.7' | ||
architecture: 'x64' | ||
|
||
- name: Run setup.py | ||
run: | | ||
pip install -r requirements.txt | ||
python -m pip install --upgrade pip | ||
pip install wheel get_pypi_latest_version | ||
wget https://github.com/RapidAI/TableStructureRec/releases/download/v0.0.0/lineless_table_rec_models.zip | ||
unzip lineless_table_rec_models.zip | ||
mv lineless_table_rec_models/*.onnx lineless_table_rec/models/ | ||
python setup_lineless.py bdist_wheel "${{ github.event.head_commit.message }}" | ||
# - name: Publish distribution 📦 to Test PyPI | ||
# uses: pypa/[email protected] | ||
# with: | ||
# password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
# repository_url: https://test.pypi.org/legacy/ | ||
# packages_dir: dist/ | ||
|
||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/[email protected] | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
packages_dir: dist/ | ||
# GenerateWHL_PushPyPi: | ||
# needs: UnitTesting | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# | ||
# - name: Set up Python 3.7 | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: '3.7' | ||
# architecture: 'x64' | ||
# | ||
# - name: Run setup.py | ||
# run: | | ||
# pip install -r requirements.txt | ||
# python -m pip install --upgrade pip | ||
# pip install wheel get_pypi_latest_version | ||
# | ||
# wget https://github.com/RapidAI/TableStructureRec/releases/download/v0.0.0/lineless_table_rec_models.zip | ||
# unzip lineless_table_rec_models.zip | ||
# mv lineless_table_rec_models/*.onnx lineless_table_rec/models/ | ||
# | ||
# python setup_lineless.py bdist_wheel "${{ github.event.head_commit.message }}" | ||
# | ||
# # - name: Publish distribution 📦 to Test PyPI | ||
# # uses: pypa/[email protected] | ||
# # with: | ||
# # password: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
# # repository_url: https://test.pypi.org/legacy/ | ||
# # packages_dir: dist/ | ||
# | ||
# - name: Publish distribution 📦 to PyPI | ||
# uses: pypa/[email protected] | ||
# with: | ||
# password: ${{ secrets.PYPI_API_TOKEN }} | ||
# packages_dir: dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,33 +35,33 @@ jobs: | |
pytest tests/test_table_cls.py | ||
GenerateWHL_PushPyPi: | ||
needs: UnitTesting | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
architecture: 'x64' | ||
|
||
- name: Run setup.py | ||
run: | | ||
pip install -r requirements.txt | ||
python -m pip install --upgrade pip | ||
pip install wheel get_pypi_latest_version | ||
wget https://github.com/RapidAI/TableStructureRec/releases/download/v0.0.0/table_cls_models.zip | ||
unzip table_cls_models.zip | ||
mv table_cls_models/*.onnx table_cls/models/ | ||
python setup_table_cls.py bdist_wheel "${{ github.event.head_commit.message }}" | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/[email protected] | ||
with: | ||
password: ${{ secrets.TABLE_CLS }} | ||
packages_dir: dist/ | ||
# GenerateWHL_PushPyPi: | ||
# needs: UnitTesting | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# | ||
# - name: Set up Python 3.10 | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: '3.10' | ||
# architecture: 'x64' | ||
# | ||
# - name: Run setup.py | ||
# run: | | ||
# pip install -r requirements.txt | ||
# python -m pip install --upgrade pip | ||
# pip install wheel get_pypi_latest_version | ||
# | ||
# wget https://github.com/RapidAI/TableStructureRec/releases/download/v0.0.0/table_cls_models.zip | ||
# unzip table_cls_models.zip | ||
# mv table_cls_models/*.onnx table_cls/models/ | ||
# | ||
# python setup_table_cls.py bdist_wheel "${{ github.event.head_commit.message }}" | ||
# | ||
# - name: Publish distribution 📦 to PyPI | ||
# uses: pypa/[email protected] | ||
# with: | ||
# password: ${{ secrets.TABLE_CLS }} | ||
# packages_dir: dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,33 +35,33 @@ jobs: | |
pytest tests/test_wired_table_rec.py | ||
GenerateWHL_PushPyPi: | ||
needs: UnitTesting | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.7' | ||
architecture: 'x64' | ||
|
||
- name: Run setup.py | ||
run: | | ||
pip install -r requirements.txt | ||
python -m pip install --upgrade pip | ||
pip install wheel get_pypi_latest_version | ||
wget https://github.com/RapidAI/TableStructureRec/releases/download/v0.0.0/wired_table_rec_models.zip | ||
unzip wired_table_rec_models.zip | ||
mv wired_table_rec_models/*.onnx wired_table_rec/models/ | ||
python setup_wired.py bdist_wheel "${{ github.event.head_commit.message }}" | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/[email protected] | ||
with: | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
packages_dir: dist/ | ||
# GenerateWHL_PushPyPi: | ||
# needs: UnitTesting | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# | ||
# - name: Set up Python 3.7 | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: '3.7' | ||
# architecture: 'x64' | ||
# | ||
# - name: Run setup.py | ||
# run: | | ||
# pip install -r requirements.txt | ||
# python -m pip install --upgrade pip | ||
# pip install wheel get_pypi_latest_version | ||
# | ||
# wget https://github.com/RapidAI/TableStructureRec/releases/download/v0.0.0/wired_table_rec_models.zip | ||
# unzip wired_table_rec_models.zip | ||
# mv wired_table_rec_models/*.onnx wired_table_rec/models/ | ||
# | ||
# python setup_wired.py bdist_wheel "${{ github.event.head_commit.message }}" | ||
# | ||
# - name: Publish distribution 📦 to PyPI | ||
# uses: pypa/[email protected] | ||
# with: | ||
# password: ${{ secrets.PYPI_API_TOKEN }} | ||
# packages_dir: dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.