Skip to content

Commit 8a7c078

Browse files
committed
feat: refactor name of project
1 parent d65f17a commit 8a7c078

18 files changed

+8
-8
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ BASE_IMG=nvidia/cuda:11.8.0-devel-ubuntu20.04
88
CODE_PATH := /home/mc76728/repos/Video-to-Automaton/
99

1010
# Custom Image
11-
MY_DOCKER_IMG := ${user}video_to_automaton
11+
MY_DOCKER_IMG := ${user}video_to_automaton_test
1212
TAG := latest
1313

1414
pull_docker_image:
File renamed without changes.
File renamed without changes.
File renamed without changes.

video_to_automaton/config/__init__.py renamed to ns_vfs/config/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
from video_to_automaton.common import omegaconf
3+
from ns_vfs.common import omegaconf
44

55
ROOT_DIR = os.path.dirname(os.path.abspath(__file__)).split(
66
"video_to_automaton"
File renamed without changes.

video_to_automaton/config/loader.py renamed to ns_vfs/config/loader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import supervision as sv
44

5-
from video_to_automaton.config import config
5+
from ns_vfs.config import config
66

77
assert (
88
config.VERSION_AND_PATH.SUPERVISION_VERSION == sv.__version__
File renamed without changes.

video_to_automaton/model/vision/grounding_dino.py renamed to ns_vfs/model/vision/grounding_dino.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from groundingdino.util.inference import Model
66
from omegaconf import DictConfig
77

8-
from video_to_automaton.model.vision._base import ComputerVisionDetector
8+
from ns_vfs.model.vision._base import ComputerVisionDetector
99

1010
warnings.filterwarnings("ignore")
1111
import numpy as np
File renamed without changes.

video_to_automaton/video_to_automaton.py renamed to ns_vfs/video_to_automaton.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
import numpy as np
66
import supervision as sv
77

8-
from video_to_automaton.model.vision._base import ComputerVisionDetector
9-
from video_to_automaton.processor.video_processor import (
8+
from ns_vfs.model.vision._base import ComputerVisionDetector
9+
from ns_vfs.processor.video_processor import (
1010
VideoProcessor,
1111
)
12-
from video_to_automaton.state import State
12+
from ns_vfs.state import State
1313

1414

1515
class VideotoAutomaton:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exclude = ["artifacts, docker"] # exclude packages matching these glob patterns
99
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
1010

1111
[project]
12-
name = "video-to-automaton"
12+
name = "ns-vfs"
1313
version = "0.0.1"
1414
authors = [
1515
{ name="Minkyu Choi", email="[email protected]" },

0 commit comments

Comments
 (0)