update DirectoryorCreate to DirectoryOrCreatetags/v0.5.0
| @@ -215,11 +215,11 @@ spec: | |||||
| - name: localvideo | - name: localvideo | ||||
| hostPath: | hostPath: | ||||
| path: /incremental_learning/video/ | path: /incremental_learning/video/ | ||||
| type: DirectoryorCreate | |||||
| type: DirectoryOrCreate | |||||
| - name: hedir | - name: hedir | ||||
| hostPath: | hostPath: | ||||
| path: /incremental_learning/he/ | path: /incremental_learning/he/ | ||||
| type: DirectoryorCreate | |||||
| type: DirectoryOrCreate | |||||
| outputDir: "/output" | outputDir: "/output" | ||||
| EOF | EOF | ||||
| ``` | ``` | ||||
| @@ -97,9 +97,9 @@ spec: | |||||
| - name: localvideo | - name: localvideo | ||||
| hostPath: | hostPath: | ||||
| path: /incremental_learning/video/ | path: /incremental_learning/video/ | ||||
| type: DirectoryorCreate | |||||
| type: DirectoryOrCreate | |||||
| - name: hedir | - name: hedir | ||||
| hostPath: | hostPath: | ||||
| path: /incremental_learning/he/ | path: /incremental_learning/he/ | ||||
| type: DirectoryorCreate | |||||
| type: DirectoryOrCreate | |||||
| outputDir: "/output" | outputDir: "/output" | ||||
| @@ -124,7 +124,7 @@ spec: | |||||
| hostPath: | hostPath: | ||||
| # user must create the directory in host | # user must create the directory in host | ||||
| path: /joint_inference/output | path: /joint_inference/output | ||||
| type: DirectoryorCreate | |||||
| type: DirectoryOrCreate | |||||
| cloudWorker: | cloudWorker: | ||||
| model: | model: | ||||
| @@ -45,7 +45,7 @@ const ( | |||||
| // CSVFormat is commas separated value format with a extra header. | // CSVFormat is commas separated value format with a extra header. | ||||
| // It can be used in structured data scenarios. | // It can be used in structured data scenarios. | ||||
| CSVFormat = "csv" | CSVFormat = "csv" | ||||
| // FormatTXT is line separated format. | |||||
| // TXTFormat is line separated format. | |||||
| // It can be used in unstructured data scenarios. | // It can be used in unstructured data scenarios. | ||||
| TXTFormat = "txt" | TXTFormat = "txt" | ||||
| ) | ) | ||||