forked from ultralytics/yolov5
-
Notifications
You must be signed in to change notification settings - Fork 100
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
Showing
43 changed files
with
3,122 additions
and
1,702 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# YOLOv5 🚀 by Ultralytics, GPL-3.0 license | ||
# README translation action to translate README.md to Chinese as README.zh-CN.md on any change to README.md | ||
|
||
name: Translate README | ||
|
||
on: | ||
push: | ||
branches: | ||
- translate_readme # replace with 'master' to enable action | ||
paths: | ||
- README.md | ||
|
||
jobs: | ||
Translate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
# ISO Langusge Codes: https://cloud.google.com/translate/docs/languages | ||
- name: Adding README - Chinese Simplified | ||
uses: dephraiim/translate-readme@main | ||
with: | ||
LANG: zh-CN |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
cff-version: 1.2.0 | ||
preferred-citation: | ||
type: software | ||
message: If you use YOLOv5, please cite it as below. | ||
authors: | ||
- family-names: Jocher | ||
given-names: Glenn | ||
orcid: "https://orcid.org/0000-0001-5950-6979" | ||
title: "YOLOv5 by Ultralytics" | ||
version: 7.0 | ||
doi: 10.5281/zenodo.3908559 | ||
date-released: 2020-5-29 | ||
license: GPL-3.0 | ||
url: "https://github.com/ultralytics/yolov5" |
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.