Skip to content

Commit

Permalink
feat: add report
Browse files Browse the repository at this point in the history
  • Loading branch information
mengyanw committed Apr 17, 2023
1 parent 17573be commit bed5bd8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file added public/report.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions src/HomeScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ function HomeScreen() {
onChange={(event) => setModelPath(event.target.value)}
>
<MenuItem value={'musicnn.pt'}>MusiCNN model <br /> tag precision: 0.8714, AUC-ROC: 0.9715</MenuItem>
<MenuItem value={'samplecnn.pt'}>Sample-level CNN model <br />tag precision: 0.5556, AUC-ROC: 0.5011</MenuItem>
<MenuItem value={'crnn.pt'}>CRNN model <br />tag precision: 0.3592, AUC-ROC: 0.7094</MenuItem>
<MenuItem value={'fcn.pt'}>FCN model <br />tag precision: 0.3156, AUC-ROC: 0.6765</MenuItem>
<MenuItem value={'fcn.pt'}>FCN model <br />tag precision: 0.3196, AUC-ROC: 0.6765</MenuItem>
<MenuItem value={'cnnsa.pt'}>CNNSA model <br />tag precision: 0.2905, AUC-ROC: 0.6673</MenuItem>
<MenuItem value={'samplecnn.pt'}>Sample-level CNN model <br />tag precision: 0.2684, AUC-ROC: 0.5556</MenuItem>
</Select>
</FormControl>
</Grid>
Expand Down
4 changes: 2 additions & 2 deletions src/ReportScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function ReportScreen() {
return (
<>
<Container maxWidth="md" sx={{ marginBottom: 10 }}>
<Typography variant="h5" mb={5}>Project Presentation</Typography>
<Typography variant="h5" mb={5}>Presentation Slides</Typography>
<ReactGoogleSlides
width={"100%"}
slidesLink="https://docs.google.com/presentation/d/1JccFYkKy50q92hSpNuc2Fm_GMKEk0hXG8GEJibCGaIM/edit?usp=sharing"
Expand All @@ -19,7 +19,7 @@ function ReportScreen() {
</Container>
<Container maxWidth="md" sx={{ marginBottom: 10 }}>
<Typography variant="h5" mb={5}>Project Report</Typography>
<iframe src="https://docs.google.com/document/d/1ZqvR6anv8_8e3456rBQH-1fLUr8rbUYEwAXHsstYj30/edit" width="100%" height="800"></iframe>
<iframe src="https://drive.google.com/file/d/1WoPOSL07QOJnGUqpXRHvqr3MqTduujSH/preview" width="100%" height="800" allow="autoplay"></iframe>
</Container>
</>
)
Expand Down

0 comments on commit bed5bd8

Please sign in to comment.