Skip to content

Commit

Permalink
fix: improve testcase (georgia-tech-db#1294)
Browse files Browse the repository at this point in the history
Test default values of `chunk_size` and `chunk_overlap`
  • Loading branch information
gaurav274 authored and a0x8o committed Nov 22, 2023
1 parent 2213c19 commit 6477eba
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions evadb/configuration/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@
DEFAULT_TRAIN_TIME_LIMIT = 120
DEFAULT_DOCUMENT_CHUNK_SIZE = 4000
DEFAULT_DOCUMENT_CHUNK_OVERLAP = 200
<<<<<<< HEAD
DEFAULT_TRAIN_REGRESSION_METRIC = "rmse"
DEFAULT_XGBOOST_TASK = "regression"
DEFAULT_SKLEARN_TRAIN_MODEL = "rf"
SKLEARN_SUPPORTED_MODELS = ["rf", "extra_tree", "kneighbor"]
=======
>>>>>>> f9e9f8b3 (fix: improve testcase (#1294))
6 changes: 6 additions & 0 deletions evadb/readers/document/document_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@

from evadb.catalog.sql_config import ROW_NUM_COLUMN
<<<<<<< HEAD
<<<<<<< HEAD
=======
>>>>>>> f9e9f8b3 (fix: improve testcase (#1294))
from evadb.configuration.constants import (
DEFAULT_DOCUMENT_CHUNK_OVERLAP,
DEFAULT_DOCUMENT_CHUNK_SIZE,
)
<<<<<<< HEAD
=======
>>>>>>> 40a10ce1 (Bump v0.3.4+ dev)
=======
>>>>>>> f9e9f8b3 (fix: improve testcase (#1294))
from evadb.readers.abstract_reader import AbstractReader
from evadb.readers.document.registry import (
_lazy_import_loader,
Expand Down

0 comments on commit 6477eba

Please sign in to comment.