Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	File size: 4,455 Bytes
			
			9aee46b  | 
								1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169  | 
								import React from 'react';
import { 
  Grid, 
  Card, 
  CardContent, 
  CardActions, 
  Typography, 
  Button, 
  Chip,
  Box
} from '@material-ui/core';
import VisibilityIcon from '@material-ui/icons/Visibility';
import CategoryIcon from '@material-ui/icons/Category';
import PlayArrowIcon from '@material-ui/icons/PlayArrow';
import { makeStyles } from '@material-ui/core/styles';
const useStyles = makeStyles((theme) => ({
  card: {
    height: '100%',
    display: 'flex',
    flexDirection: 'column',
  },
  selectedCard: {
    border: '2px solid #3f51b5',
  },
  unavailableCard: {
    opacity: 0.6,
  },
  cardContent: {
    flexGrow: 1,
  },
  chipContainer: {
    marginBottom: theme.spacing(1.5),
  },
  successChip: {
    backgroundColor: '#34C759',
    color: '#fff',
  },
  errorChip: {
    backgroundColor: '#FF3B3F',
    color: '#fff',
  },
  modelType: {
    marginTop: theme.spacing(1),
  },
  processButton: {
    marginTop: theme.spacing(3),
    textAlign: 'center',
  }
}));
const ModelSelector = ({ 
  onModelSelect, 
  onProcess, 
  isProcessing, 
  modelsStatus, 
  selectedModel,
  imageSelected 
}) => {
  const classes = useStyles();
  
  const models = [
    {
      id: 'yolo',
      name: 'YOLOv8',
      description: 'Fast and accurate object detection',
      icon: <VisibilityIcon />,
      available: modelsStatus.yolo
    },
    {
      id: 'detr',
      name: 'DETR',
      description: 'DEtection TRansformer for object detection',
      icon: <VisibilityIcon />,
      available: modelsStatus.detr
    },
    {
      id: 'vit',
      name: 'ViT',
      description: 'Vision Transformer for image classification',
      icon: <CategoryIcon />,
      available: modelsStatus.vit
    }
  ];
  const handleModelClick = (modelId) => {
    if (models.find(m => m.id === modelId).available) {
      onModelSelect(modelId);
    }
  };
  return (
    <Box sx={{ p: 2, height: '100%' }}>
      <Typography variant="h6" gutterBottom>
        Select Model
      </Typography>
      
      <Grid container spacing={2}>
        {models.map((model) => (
          <Grid item xs={12} sm={4} key={model.id}>
            <Card 
              className={`
                ${classes.card} 
                ${selectedModel === model.id ? classes.selectedCard : ''} 
                ${!model.available ? classes.unavailableCard : ''}
              `}
              onClick={() => handleModelClick(model.id)}
            >
              <CardContent className={classes.cardContent}>
                <Box sx={{ mb: 2, color: 'primary' }}>
                  {model.icon}
                </Box>
                <Typography variant="h5" component="div" gutterBottom>
                  {model.name}
                </Typography>
                <div className={classes.chipContainer}>
                  {model.available ? (
                    <Chip 
                      label="Available" 
                      className={classes.successChip}
                      size="small" 
                    />
                  ) : (
                    <Chip 
                      label="Not Available" 
                      className={classes.errorChip}
                      size="small" 
                    />
                  )}
                </div>
                <Typography variant="body2" color="textSecondary">
                  {model.description}
                </Typography>
              </CardContent>
              <CardActions>
                <Button 
                  size="small" 
                  onClick={() => handleModelClick(model.id)}
                  disabled={!model.available}
                  color={selectedModel === model.id ? "primary" : "default"}
                  variant={selectedModel === model.id ? "contained" : "outlined"}
                  fullWidth
                >
                  {selectedModel === model.id ? 'Selected' : 'Select'}
                </Button>
              </CardActions>
            </Card>
          </Grid>
        ))}
      </Grid>
      <div className={classes.processButton}>
        <Button
          variant="contained"
          color="primary"
          size="large"
          startIcon={<PlayArrowIcon />}
          onClick={onProcess}
          disabled={!selectedModel || !imageSelected || isProcessing}
        >
          {isProcessing ? 'Processing...' : 'Process Image'}
        </Button>
      </div>
    </Box>
  );
};
export default ModelSelector;
 |