-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
chenzhihao
committed
Sep 23, 2021
1 parent
abdd2ef
commit e3b3d42
Showing
9 changed files
with
209 additions
and
151 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ accelerate==0.4.0 | |
numpy==1.21.2 | ||
tqdm==4.62.2 | ||
torch==1.9.0 | ||
tensorflow==2.6.0 | ||
tensorboard==2.6.0 |
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 |
---|---|---|
|
@@ -24,9 +24,9 @@ | |
version = f.read().strip() | ||
|
||
# 改成自己的工程名,尽量与gitlab的工程名起名一致 | ||
proj_name = "EventExtraction" | ||
proj_name = "event_extraction_pytorch" | ||
keywords = "event_extraction, bert_crf" | ||
git_url = f"https://gitlab.bailian-ai.com/ai_algo/{proj_name}" | ||
git_url = f"https://github.com/zhihao-chen/{proj_name}" | ||
|
||
|
||
def load_requirements(file_name="requirements.txt", comment_char="#"): | ||
|
@@ -47,8 +47,8 @@ def load_requirements(file_name="requirements.txt", comment_char="#"): | |
|
||
setup( | ||
name=proj_name, | ||
author="bailian.ai", | ||
author_email="[email protected]", | ||
author="andrew chen", | ||
author_email="[email protected]", | ||
description=long_description, | ||
version=version, | ||
url=git_url, | ||
|