Update text for dataset chunking in task creation (#33)

main
Ryan Hirasaki 4 years ago committed by GitHub
parent f176deef22
commit f09c0627c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Simplified running REST API tests. Extended CI-nightly workflow - Simplified running REST API tests. Extended CI-nightly workflow
- REST API tests are partially moved to Python SDK (`users`, `projects`, `tasks`) - REST API tests are partially moved to Python SDK (`users`, `projects`, `tasks`)
- Removed link to OpenVINO documentation (<https://github.com/cvat-ai/cvat/pull/35>) - Removed link to OpenVINO documentation (<https://github.com/cvat-ai/cvat/pull/35>)
- Clarified meaning of chunking for videos
### Deprecated ### Deprecated
- TDB - TDB

@ -375,12 +375,12 @@ class AdvancedConfigurationForm extends React.PureComponent<Props> {
private renderUzeZipChunks(): JSX.Element { private renderUzeZipChunks(): JSX.Element {
return ( return (
<Form.Item <Form.Item
help='Force to use zip chunks as compressed data. Actual for videos only.' help='Force to use zip chunks as compressed data. Cut out content for videos only.'
name='useZipChunks' name='useZipChunks'
valuePropName='checked' valuePropName='checked'
> >
<Checkbox> <Checkbox>
<Text className='cvat-text-color'>Use zip chunks</Text> <Text className='cvat-text-color'>Use zip/video chunks</Text>
</Checkbox> </Checkbox>
</Form.Item> </Form.Item>
); );

@ -139,9 +139,9 @@ For example, the sequence `2.jpeg, 10.jpeg, 1.jpeg` after sorting will be:
- `natural`: 1.jpeg, 2.jpeg, 10.jpeg - `natural`: 1.jpeg, 2.jpeg, 10.jpeg
- `predefined`: 2.jpeg, 10.jpeg, 1.jpeg - `predefined`: 2.jpeg, 10.jpeg, 1.jpeg
### Use zip chunks ### Use zip/video chunks
Force to use zip chunks as compressed data. Actual for videos only. Force to use zip chunks as compressed data. Cut out content for videos only.
### Use cache ### Use cache

Loading…
Cancel
Save