forked from facebookresearch/sam2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update links after renaming the repo from
segment-anything-2
to `sa…
…m2` (facebookresearch#341) This PR update repo links after we renamed the repo from `segment-anything-2` to `sam2`. It also changes `NAME` in setup.py to `SAM-2` (which is already the named used in pip setup since python packages don't allow whitespace)
- Loading branch information
1 parent
05d9e57
commit 98fcb16
Showing
9 changed files
with
28 additions
and
28 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
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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ export const RESEARCH_BY_META_AI = 'By Meta FAIR'; | |
export const DEMO_FRIENDLY_NAME = 'Segment Anything 2 Demo'; | ||
export const VIDEO_WATERMARK_TEXT = `Modified with ${DEMO_FRIENDLY_NAME}`; | ||
export const PROJECT_GITHUB_URL = | ||
'https://github.com/facebookresearch/segment-anything-2'; | ||
'https://github.com/facebookresearch/sam2'; | ||
export const AIDEMOS_URL = 'https://aidemos.meta.com'; | ||
export const ABOUT_URL = 'https://ai.meta.com/sam2'; | ||
export const EMAIL_ADDRESS = '[email protected]'; | ||
|
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
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
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
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
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
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 |
---|---|---|
|
@@ -8,10 +8,10 @@ | |
from setuptools import find_packages, setup | ||
|
||
# Package metadata | ||
NAME = "SAM 2" | ||
NAME = "SAM-2" | ||
VERSION = "1.0" | ||
DESCRIPTION = "SAM 2: Segment Anything in Images and Videos" | ||
URL = "https://github.com/facebookresearch/segment-anything-2" | ||
URL = "https://github.com/facebookresearch/sam2" | ||
AUTHOR = "Meta AI" | ||
AUTHOR_EMAIL = "[email protected]" | ||
LICENSE = "Apache 2.0" | ||
|
@@ -79,7 +79,7 @@ | |
"Failed to build the SAM 2 CUDA extension due to the error above. " | ||
"You can still use SAM 2 and it's OK to ignore the error above, although some " | ||
"post-processing functionality may be limited (which doesn't affect the results in most cases; " | ||
"(see https://github.com/facebookresearch/segment-anything-2/blob/main/INSTALL.md).\n" | ||
"(see https://github.com/facebookresearch/sam2/blob/main/INSTALL.md).\n" | ||
) | ||
|
||
|
||
|