Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the npm_and_yarn group across 1 directory with 2 updates #12

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/Demo/mobile/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5740,9 +5740,9 @@ flow-parser@^0.206.0:
integrity sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==

follow-redirects@^1.0.0, follow-redirects@^1.15.0:
version "1.15.4"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.4.tgz#cdc7d308bf6493126b17ea2191ea0ccf3e535adf"
integrity sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==
version "1.15.6"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b"
integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==

fontfaceobserver@^2.1.0:
version "2.3.0"
Expand Down Expand Up @@ -6511,14 +6511,14 @@ ip-regex@^5.0.0:
integrity sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw==

ip@^1.1.5:
version "1.1.8"
resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48"
integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==
version "1.1.9"
resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.9.tgz#8dfbcc99a754d07f425310b86a99546b1151e396"
integrity sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==

ip@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da"
integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==
version "2.0.1"
resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105"
integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==

[email protected], ipaddr.js@^1.9.0:
version "1.9.1"
Expand Down
2 changes: 1 addition & 1 deletion src/Demo/web/inference/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

import logging

from .settings import CameraConfig, DetectorConfig, TrackerConfig
from .common import ImageFaces
from .component.camera import Camera, CameraOpenError
from .component.detector import Detector
from .component.drawer import Drawer
from .component.identifier import Identifier
from .settings import CameraConfig, DetectorConfig, TrackerConfig
from .types import Image
from .utils.decorator import error_handler
from .utils.time_tracker import time_tracker
Expand Down
2 changes: 1 addition & 1 deletion src/Demo/web/inference/component/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

import cv2

from ..settings import CameraConfig, SourceConfig
from ..common import ImageFaces
from ..settings import CameraConfig, SourceConfig

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion src/Demo/web/inference/component/detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

import logging

from ..settings import DetectorConfig, ModelsConfig
from ..common import Face, ImageFaces
from ..model_zoo.model_router import get_model
from ..settings import DetectorConfig, ModelsConfig

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion src/Demo/web/inference/component/identifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import numpy as np
import streamlit as st

from ..settings import TrackerConfig
from ..client import WebSocketClient
from ..common import Face, ImageFaces
from ..settings import TrackerConfig
from ..types import Bbox, Face2Search, IdentifyResult, Kps, MatchedResult
from .sort_plus import KalmanBoxTracker, associate_detections_to_trackers

Expand Down
11 changes: 8 additions & 3 deletions src/Demo/web/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
from pathlib import Path

import streamlit as st
from pygizmokit.rich_logger import set_up_logging

from inference import BoostFace
from inference.settings import SourceConfig, InferenceProvider, CameraConfig, DetectorConfig, TrackerConfig
from inference.settings import (
CameraConfig,
DetectorConfig,
InferenceProvider,
SourceConfig,
TrackerConfig,
)
from inference.utils.decorator import calm_down
from pygizmokit.rich_logger import set_up_logging

set_up_logging()
logger = logging.getLogger(__file__)
Expand Down