Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cpuhrsch committed Oct 17, 2023
0 parents commit 00dc2cb
Show file tree
Hide file tree
Showing 44 changed files with 10,879 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test Installation

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test-installation:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121
pip install -e .
- name: Test import
run: |
python -c "from segment_anything_fast import dynamic_quant, sam_model_registry"
Loading

0 comments on commit 00dc2cb

Please sign in to comment.