You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"--overlap", "-o", type=float, help="Ratio of overlaps between chunks."
179
+
"--overlap",
180
+
"-o",
181
+
type=float,
182
+
default=__default_config.overlap_ratio,
183
+
help="Ratio of overlaps between chunks.",
179
184
)
180
185
chunking_parser.add_argument(
181
186
"-c",
182
187
"--chunk_size",
183
188
type=int,
184
-
default=-1,
189
+
default=__default_config.chunk_size,
185
190
help="Size of chunks (-1 for no chunking).",
186
191
)
187
192
chunking_parser.add_argument(
188
193
"--encoding",
189
194
type=str,
190
-
default="utf8",
195
+
default=__default_config.encoding,
191
196
help="Encoding used by the files. See https://docs.python.org/3/library/codecs.html#standard-encodings for supported encodings. Use `_auto` for automatic encoding detection.",
0 commit comments