revert testing changes

This commit is contained in:
Abhinav 2022-03-14 12:16:09 +05:30
parent 188dbe89ae
commit 61e5429f00
3 changed files with 39 additions and 3 deletions

View file

@ -88,7 +88,6 @@ export default function MLFileDebugView(props: MLFileDebugViewProps) {
const loadFile = async () => { const loadFile = async () => {
// TODO: go through worker for these apis, to not include ml code in main bundle // TODO: go through worker for these apis, to not include ml code in main bundle
const imageBitmap = await createImageBitmap(props.file); const imageBitmap = await createImageBitmap(props.file);
console.log(imageBitmap);
const faceDetections = await blazeFaceDetectionService.detectFaces( const faceDetections = await blazeFaceDetectionService.detectFaces(
imageBitmap imageBitmap
); );

View file

@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import React, { useState, useEffect, useContext, ChangeEvent } from 'react'; import React, { useState, useEffect, useContext, ChangeEvent } from 'react';
import { getData, LS_KEYS } from 'utils/storage/localStorage'; import { getData, LS_KEYS } from 'utils/storage/localStorage';
import { useRouter } from 'next/router'; import { useRouter } from 'next/router';
@ -486,6 +485,44 @@ export default function MLDebug() {
<MLFileDebugView file={debugFile} /> <MLFileDebugView file={debugFile} />
<hr /> <hr />
<Row>Hdbscan MST: </Row>
<div
id="treeWrapper"
style={{
width: '100%',
height: '50em',
backgroundColor: 'white',
}}>
{mstD3Tree && (
<Tree
data={mstD3Tree}
orientation={'vertical'}
nodeSize={nodeSize}
zoom={0.25}
renderCustomNodeElement={(rd3tProps) =>
renderForeignObjectNode({
...rd3tProps,
foreignObjectProps,
})
}
/>
)}
</div>
<hr />
<Row>TSNE of embeddings: </Row>
<Row>
<div
id="tsneWrapper"
style={{
width: '840px',
height: '840px',
backgroundColor: 'white',
overflow: 'auto',
}}>
{mlResult.tsne && <TSNEPlot mlResult={mlResult} />}
</div>
</Row>
</Container> </Container>
); );
} }

View file

@ -2,7 +2,7 @@ import { JobConfig } from 'types/common/job';
import { MLSearchConfig, MLSyncConfig } from 'types/machineLearning'; import { MLSearchConfig, MLSyncConfig } from 'types/machineLearning';
export const DEFAULT_ML_SYNC_JOB_CONFIG: JobConfig = { export const DEFAULT_ML_SYNC_JOB_CONFIG: JobConfig = {
intervalSec: 1, intervalSec: 30,
// TODO: finalize this after seeing effects on and from machine sleep // TODO: finalize this after seeing effects on and from machine sleep
maxItervalSec: 960, maxItervalSec: 960,
backoffMultiplier: 2, backoffMultiplier: 2,