Skip to content

Commit

Permalink
Table.from_table: set batch size to 5000
Browse files Browse the repository at this point in the history
  • Loading branch information
markotoplak committed Jan 28, 2021
1 parent b04ec1d commit 05df183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/data/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def from_table(cls, domain, source, row_indices=...):
:rtype: Orange.data.Table
"""

PART = 10
PART = 5000

new_cache = _thread_local.conversion_cache is None
try:
Expand Down

0 comments on commit 05df183

Please sign in to comment.