Skip to content

Commit

Permalink
docs: fix readme (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanxiao committed Mar 24, 2022
1 parent 12bf98a commit fa9d50c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Test
id: test
run: |
pytest --suppress-no-test-exit-code --cov=cas --cov-report=xml \
pytest --suppress-no-test-exit-code --cov=clip_client --cov-report=xml \
-v -s -m "not gpu" ${{ matrix.test-path }}
echo "::set-output name=codecov_flag::cas"
timeout-minutes: 30
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Test
id: test
run: |
pytest --suppress-no-test-exit-code --cov=cas --cov-report=xml \
pytest --suppress-no-test-exit-code --cov=clip_client --cov-report=xml \
-v -s -m "not gpu" ${{ matrix.test-path }}
echo "::set-output name=codecov_flag::cas"
timeout-minutes: 30
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<!-- start elevator-pitch -->

CLIP-as-service is a low-latency high-scalability embedding service for images and texts. It can be easily integrated as a microservice into neural search solutions.
CLIP-as-service is a low-latency high-scalability service for embedding images and texts. It can be easily integrated as a microservice into neural search solutions.

**Fast**: Serve CLIP models with ONNX runtime and PyTorch JIT with 800QPS<sup>[*]</sup>. Non-blocking duplex streaming on requests and responses, designed for large data and long-running tasks.

Expand Down
1 change: 1 addition & 0 deletions client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
'pytest',
'pytest-timeout',
'pytest-mock',
'pytest-asyncio',
'pytest-cov',
'pytest-repeat',
'pytest-reraise',
Expand Down
11 changes: 0 additions & 11 deletions server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,6 @@
install_requires=['ftfy', 'torch', 'regex', 'torchvision', 'jina'],
extras_require={
'onnx': ['onnxruntime', 'onnx', 'onnxruntime-gpu'],
'test': [
'pytest',
'pytest-timeout',
'pytest-mock',
'pytest-cov',
'pytest-repeat',
'pytest-reraise',
'mock',
'pytest-custom_exit_code',
'black',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit fa9d50c

Please sign in to comment.