Browse Source

Merge pull request #313 from hey-kong/main

update DirectoryorCreate to DirectoryOrCreate
tags/v0.5.0
KubeEdge Bot GitHub 3 years ago
parent
commit
c0e76f50e3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions
  1. +2
    -2
      examples/incremental_learning/helmet_detection/README.md
  2. +2
    -2
      examples/incremental_learning/helmet_detection/helmet_detection.yaml
  3. +1
    -1
      examples/storage/s3/joint_inference/README.md
  4. +1
    -1
      pkg/localcontroller/managers/dataset/dataset.go

+ 2
- 2
examples/incremental_learning/helmet_detection/README.md View File

@@ -215,11 +215,11 @@ spec:
- name: localvideo
hostPath:
path: /incremental_learning/video/
type: DirectoryorCreate
type: DirectoryOrCreate
- name: hedir
hostPath:
path: /incremental_learning/he/
type: DirectoryorCreate
type: DirectoryOrCreate
outputDir: "/output"
EOF
```


+ 2
- 2
examples/incremental_learning/helmet_detection/helmet_detection.yaml View File

@@ -97,9 +97,9 @@ spec:
- name: localvideo
hostPath:
path: /incremental_learning/video/
type: DirectoryorCreate
type: DirectoryOrCreate
- name: hedir
hostPath:
path: /incremental_learning/he/
type: DirectoryorCreate
type: DirectoryOrCreate
outputDir: "/output"

+ 1
- 1
examples/storage/s3/joint_inference/README.md View File

@@ -124,7 +124,7 @@ spec:
hostPath:
# user must create the directory in host
path: /joint_inference/output
type: DirectoryorCreate
type: DirectoryOrCreate
cloudWorker:
model:


+ 1
- 1
pkg/localcontroller/managers/dataset/dataset.go View File

@@ -45,7 +45,7 @@ const (
// CSVFormat is commas separated value format with a extra header.
// It can be used in structured data scenarios.
CSVFormat = "csv"
// FormatTXT is line separated format.
// TXTFormat is line separated format.
// It can be used in unstructured data scenarios.
TXTFormat = "txt"
)


Loading…
Cancel
Save