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
dst (str or bigframes.series.Series or None, default None): Destination GCS folder str or blob series. If None, output to BQ as bytes.
293
293
connection (str or None, default None): BQ connection used for function internet transactions, and the output blob if "dst" is str. If None, uses default connection of the session.
294
-
max_batching_rows (int, default 8,096): Max number of rows per batch send to cloud run to execute the function.
294
+
max_batching_rows (int, default 8,192): Max number of rows per batch send to cloud run to execute the function.
295
295
container_cpu (int or float, default 0.33): number of container CPUs. Possible values are [0.33, 8]. Floats larger than 1 are cast to intergers.
296
296
container_memory (str, default "512Mi"): container memory size. String of the format <number><unit>. Possible values are from 512Mi to 32Gi.
fy (float, defalut 0.0): scale factor along the vertical axis. If set to 0.0, dsize parameter determines the output size.
370
370
dst (str or bigframes.series.Series or None, default None): Destination GCS folder str or blob series. If None, output to BQ as bytes.
371
371
connection (str or None, default None): BQ connection used for function internet transactions, and the output blob if "dst" is str. If None, uses default connection of the session.
372
-
max_batching_rows (int, default 8,096): Max number of rows per batch send to cloud run to execute the function.
372
+
max_batching_rows (int, default 8,192): Max number of rows per batch send to cloud run to execute the function.
373
373
container_cpu (int or float, default 0.33): number of container CPUs. Possible values are [0.33, 8]. Floats larger than 1 are cast to intergers.
374
374
container_memory (str, default "512Mi"): container memory size. String of the format <number><unit>. Possible values are from 512Mi to 32Gi.
norm_type (str, default "l2"): Normalization type. Accepted values are "inf", "l1", "l2" and "minmax".
457
457
dst (str or bigframes.series.Series or None, default None): Destination GCS folder str or blob series. If None, output to BQ as bytes.
458
458
connection (str or None, default None): BQ connection used for function internet transactions, and the output blob if "dst" is str. If None, uses default connection of the session.
459
-
max_batching_rows (int, default 8,096): Max number of rows per batch send to cloud run to execute the function.
459
+
max_batching_rows (int, default 8,192): Max number of rows per batch send to cloud run to execute the function.
460
460
container_cpu (int or float, default 0.33): number of container CPUs. Possible values are [0.33, 8]. Floats larger than 1 are cast to intergers.
461
461
container_memory (str, default "512Mi"): container memory size. String of the format <number><unit>. Possible values are from 512Mi to 32Gi.
462
462
@@ -519,7 +519,7 @@ def pdf_extract(
519
519
self,
520
520
*,
521
521
connection: Optional[str] =None,
522
-
max_batching_rows: int=8096,
522
+
max_batching_rows: int=8192,
523
523
container_cpu: Union[float, int] =0.33,
524
524
container_memory: str="512Mi",
525
525
) ->bigframes.series.Series:
@@ -534,7 +534,7 @@ def pdf_extract(
534
534
connection (str or None, default None): BQ connection used for
535
535
function internet transactions, and the output blob if "dst"
536
536
is str. If None, uses default connection of the session.
537
-
max_batching_rows (int, default 8,096): Max number of rows per batch
537
+
max_batching_rows (int, default 8,192): Max number of rows per batch
538
538
send to cloud run to execute the function.
539
539
container_cpu (int or float, default 0.33): number of container CPUs. Possible values are [0.33, 8]. Floats larger than 1 are cast to intergers.
540
540
container_memory (str, default "512Mi"): container memory size. String of the format <number><unit>. Possible values are from 512Mi to 32Gi.
@@ -566,7 +566,7 @@ def pdf_chunk(
566
566
connection: Optional[str] =None,
567
567
chunk_size: int=1000,
568
568
overlap_size: int=200,
569
-
max_batching_rows: int=8096,
569
+
max_batching_rows: int=8192,
570
570
container_cpu: Union[float, int] =0.33,
571
571
container_memory: str="512Mi",
572
572
) ->bigframes.series.Series:
@@ -586,7 +586,7 @@ def pdf_chunk(
586
586
overlap_size (int, default 200): the number of overlapping characters
587
587
between consective chunks. The helps to ensure context is
588
588
perserved across chunk boundaries.
589
-
max_batching_rows (int, default 8,096): Max number of rows per batch
589
+
max_batching_rows (int, default 8,192): Max number of rows per batch
590
590
send to cloud run to execute the function.
591
591
container_cpu (int or float, default 0.33): number of container CPUs. Possible values are [0.33, 8]. Floats larger than 1 are cast to intergers.
592
592
container_memory (str, default "512Mi"): container memory size. String of the format <number><unit>. Possible values are from 512Mi to 32Gi.
0 commit comments