Skip to content

Commit

Permalink
Added ability to match many model labels to one task labels (#1051)
Browse files Browse the repository at this point in the history
* Added ability to match many model labels to one task labels

* Fixed grammar
  • Loading branch information
bsekachev authored and nmanovic committed Jan 14, 2020
1 parent e5b4c19 commit 247d7f0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 27 deletions.
44 changes: 19 additions & 25 deletions cvat-ui/src/components/model-runner-modal/model-runner-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
Select,
Tooltip,
Checkbox,
notification,
} from 'antd';

import { Model } from '../../reducers/interfaces';
Expand Down Expand Up @@ -118,6 +119,12 @@ export default class ModelRunnerModalComponent extends React.PureComponent<Props
.filter((model) => model.name === selectedModel)[0];

if (!selectedModelInstance.primary) {
if (!selectedModelInstance.labels.length) {
notification.warning({
message: 'The selected model does not include any lables',
});
}

let taskLabels: string[] = taskInstance.labels
.map((label: any): string => label.name);
const [defaultMapping, defaultColors]: StringObject[] = selectedModelInstance.labels
Expand Down Expand Up @@ -304,45 +311,32 @@ export default class ModelRunnerModalComponent extends React.PureComponent<Props
const model = selectedModel && models
.filter((_model): boolean => _model.name === selectedModel)[0];

const excludedLabels: {
model: string[];
task: string[];
} = {
model: [],
task: [],
};

const excludedModelLabels: string[] = Object.keys(mapping);
const withMapping = model && !model.primary;
const tags = withMapping ? Object.keys(mapping)
.map((modelLabel: string) => {
const taskLabel = mapping[modelLabel];
excludedLabels.model.push(modelLabel);
excludedLabels.task.push(taskLabel);
return this.renderMappingTag(
modelLabel,
mapping[modelLabel],
);
}) : [];
const tags = withMapping ? excludedModelLabels
.map((modelLabel: string) => this.renderMappingTag(
modelLabel,
mapping[modelLabel],
)) : [];

const availableModelLabels = model ? model.labels
.filter(
(label: string) => !excludedLabels.model.includes(label),
(label: string) => !excludedModelLabels.includes(label),
) : [];
const availableTaskLabels = taskInstance.labels
.map(
(label: any) => label.name,
).filter((label: string): boolean => !excludedLabels.task.includes(label));
const taskLabels = taskInstance.labels.map(
(label: any) => label.name,
);

const mappingISAvailable = !!availableModelLabels.length
&& !!availableTaskLabels.length;
&& !!taskLabels.length;

return (
<div className='cvat-run-model-dialog'>
{ this.renderModelSelector() }
{ withMapping && tags}
{ withMapping
&& mappingISAvailable
&& this.renderMappingInput(availableModelLabels, availableTaskLabels)
&& this.renderMappingInput(availableModelLabels, taskLabels)
}
{ withMapping
&& (
Expand Down
5 changes: 3 additions & 2 deletions cvat-ui/src/containers/file-manager/file-manager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ interface DispatchToProps {
function mapStateToProps(state: CombinedState): StateToProps {
function convert(items: ShareItem[], path?: string): TreeNodeNormal[] {
return items.map((item): TreeNodeNormal => {
const key = `${path}${item.name}/`;
const isLeaf = item.type !== 'DIR';
const key = `${path}${item.name}${isLeaf ? '' : '/'}`;
return {
key,
isLeaf,
title: item.name || 'root',
isLeaf: item.type !== 'DIR',
children: convert(item.children, key),
};
});
Expand Down

0 comments on commit 247d7f0

Please sign in to comment.