mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-07-07 22:04:53 +08:00
Update Docs language dropdown height (#6927)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kayzwer <68285002+Kayzwer@users.noreply.github.com>
This commit is contained in:
parent
412eb57fca
commit
aa0ae08178
6
.github/workflows/ci.yaml
vendored
6
.github/workflows/ci.yaml
vendored
@ -44,7 +44,7 @@ jobs:
|
|||||||
python-version: ['3.11']
|
python-version: ['3.11']
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
cache: 'pip' # caching pip dependencies
|
cache: 'pip' # caching pip dependencies
|
||||||
@ -99,7 +99,7 @@ jobs:
|
|||||||
model: [yolov8n]
|
model: [yolov8n]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
cache: 'pip' # caching pip dependencies
|
cache: 'pip' # caching pip dependencies
|
||||||
@ -158,7 +158,7 @@ jobs:
|
|||||||
torch: '1.8.0' # min torch version CI https://pypi.org/project/torchvision/
|
torch: '1.8.0' # min torch version CI https://pypi.org/project/torchvision/
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
cache: 'pip' # caching pip dependencies
|
cache: 'pip' # caching pip dependencies
|
||||||
|
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: "0" # pulls all commits (needed correct last updated dates in Docs)
|
fetch-depth: "0" # pulls all commits (needed correct last updated dates in Docs)
|
||||||
- name: Set up Python environment
|
- name: Set up Python environment
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.10'
|
||||||
cache: 'pip' # caching pip dependencies
|
cache: 'pip' # caching pip dependencies
|
||||||
|
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
@ -9,7 +9,7 @@ jobs:
|
|||||||
stale:
|
stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v8
|
- uses: actions/stale@v9
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
@ -44,9 +44,7 @@ div.highlight {
|
|||||||
max-width: 1440px;
|
max-width: 1440px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Language dropdown selector (default is shorter 200px in length) */
|
/* Set language dropdown maximum height to screen height */
|
||||||
/* Not working as activates on hover under icon area
|
.md-header .md-select:hover .md-select__inner {
|
||||||
body .md-select__inner {
|
max-height: 75vh;
|
||||||
max-height: 500px !important;
|
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
@ -434,7 +434,7 @@ class HUBDatasetStats:
|
|||||||
data = check_cls_dataset(unzip_dir)
|
data = check_cls_dataset(unzip_dir)
|
||||||
data['path'] = unzip_dir
|
data['path'] = unzip_dir
|
||||||
else: # detect, segment, pose
|
else: # detect, segment, pose
|
||||||
zipped, data_dir, yaml_path = self._unzip(Path(path))
|
_, data_dir, yaml_path = self._unzip(Path(path))
|
||||||
try:
|
try:
|
||||||
# Load YAML with checks
|
# Load YAML with checks
|
||||||
data = yaml_load(yaml_path)
|
data = yaml_load(yaml_path)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user