Skip to content

Commit

Permalink
Remove the Experimental Module
Browse files Browse the repository at this point in the history
The tools in experimental are stable at this point. This change makes it easier for us to develop them going forward.
  • Loading branch information
mjs2600 committed Sep 27, 2024
1 parent 72caab7 commit 07c5c91
Show file tree
Hide file tree
Showing 10 changed files with 357 additions and 345 deletions.
18 changes: 0 additions & 18 deletions Dockerfile

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import cv2
import numpy as np

import perception.experimental.local_descriptor_deduplication as ldd
import perception.local_descriptor_deduplication as ldd

LOGGER = logging.getLogger(__name__)

Expand Down
File renamed without changes.
File renamed without changes.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import tqdm
import typing_extensions

import perception.experimental.approximate_deduplication as ad
import perception.approximate_deduplication as ad
import perception.hashers.tools as pht

LOGGER = logging.getLogger(__name__)
Expand Down
674 changes: 352 additions & 322 deletions poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions tests/test_experimental.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

import perception.benchmarking.image as pb
import perception.benchmarking.image_transforms as pbit
import perception.experimental.approximate_deduplication as ad
import perception.experimental.local_descriptor_deduplication as ldd
import perception.approximate_deduplication as ad
import perception.local_descriptor_deduplication as ldd
import perception.hashers.tools as pht
import perception.testing as pt
from perception.experimental.debug import vizualize_pair
from perception.approximate_deduplication.debug import vizualize_pair

# Params for object level matching.
OBJECT_MATCH_PARAMS = {
Expand Down

0 comments on commit 07c5c91

Please sign in to comment.