File size: 51,451 Bytes
1f5470c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 |
"""Python-based idempotent model-saving functionality."""
import datetime
import io
import json
import math
import os
import pathlib
import shutil
import tempfile
import warnings
import zipfile
import ml_dtypes
import numpy as np
from keras.src import backend
from keras.src.backend.common import global_state
from keras.src.layers.layer import Layer
from keras.src.losses.loss import Loss
from keras.src.metrics.metric import Metric
from keras.src.optimizers.optimizer import Optimizer
from keras.src.saving.serialization_lib import ObjectSharingScope
from keras.src.saving.serialization_lib import deserialize_keras_object
from keras.src.saving.serialization_lib import serialize_keras_object
from keras.src.trainers.compile_utils import CompileMetrics
from keras.src.utils import dtype_utils
from keras.src.utils import file_utils
from keras.src.utils import io_utils
from keras.src.utils import naming
from keras.src.utils import plot_model
from keras.src.utils.model_visualization import check_pydot
from keras.src.utils.summary_utils import readable_memory_size
from keras.src.utils.summary_utils import weight_memory_size
from keras.src.version import __version__ as keras_version
try:
import h5py
except ImportError:
h5py = None
try:
import psutil
except ImportError:
psutil = None
try:
import huggingface_hub
except ImportError:
huggingface_hub = None
_CONFIG_FILENAME = "config.json"
_METADATA_FILENAME = "metadata.json"
_VARS_FNAME = "model.weights" # Will become e.g. "model.weights.h5"
_VARS_FNAME_H5 = _VARS_FNAME + ".h5"
_VARS_FNAME_NPZ = _VARS_FNAME + ".npz"
_ASSETS_DIRNAME = "assets"
_MEMORY_UPPER_BOUND = 0.5 # 50%
_MODEL_CARD_TEMPLATE = """
---
library_name: keras
---
This model has been uploaded using the Keras library and can be used with JAX,
TensorFlow, and PyTorch backends.
This model card has been generated automatically and should be completed by the
model author.
See [Model Cards documentation](https://huggingface.co/docs/hub/model-cards) for
more information.
For more details about the model architecture, check out
[config.json](./config.json)."""
def save_model(model, filepath, weights_format="h5", zipped=True):
"""Save a zip-archive representing a Keras model to the given file or path.
The zip-based archive contains the following structure:
- JSON-based configuration file (config.json): Records of model, layer, and
other saveables' configuration.
- H5-based saveable state files, found in respective directories, such as
model/states.npz, model/dense_layer/states.npz, etc.
- Metadata file.
The states of Keras saveables (layers, optimizers, loss, and metrics) are
automatically saved as long as they can be discovered through the attributes
returned by `dir(Model)`. Typically, the state includes the variables
associated with the saveable, but some specially purposed layers may
contain more such as the vocabularies stored in the hashmaps. The saveables
define how their states are saved by exposing `save_state()` and
`load_state()` APIs.
For the case of layer states, the variables will be visited as long as
they are either 1) referenced via layer attributes, or 2) referenced via a
container (list, tuple, or dict), and the container is referenced via a
layer attribute.
"""
if weights_format == "h5" and h5py is None:
raise ImportError("h5py must be installed in order to save a model.")
if not model.built:
warnings.warn(
"You are saving a model that has not yet been built. "
"It might not contain any weights yet. "
"Consider building the model first by calling it "
"on some data.",
stacklevel=2,
)
if isinstance(filepath, io.IOBase):
_save_model_to_fileobj(model, filepath, weights_format)
return
filepath = str(filepath)
is_hf = filepath.startswith("hf://")
if zipped and not filepath.endswith(".keras"):
raise ValueError(
"Invalid `filepath` argument: expected a `.keras` extension. "
f"Received: filepath={filepath}"
)
if not zipped and filepath.endswith(".keras"):
raise ValueError(
"When using `zipped=False`, the `filepath` argument should not "
f"end in `.keras`. Received: filepath={filepath}"
)
if zipped and is_hf:
raise ValueError(
"When saving to the Hugging Face Hub, you should not save the "
f"model as zipped. Received: filepath={filepath}, zipped={zipped}"
)
if is_hf:
_upload_model_to_hf(model, filepath, weights_format)
elif not zipped:
_save_model_to_dir(model, filepath, weights_format)
else:
if file_utils.is_remote_path(filepath):
# Remote path. Zip to local memory byte io and copy to remote
zip_filepath = io.BytesIO()
_save_model_to_fileobj(model, zip_filepath, weights_format)
with file_utils.File(filepath, "wb") as f:
f.write(zip_filepath.getvalue())
else:
with open(filepath, "wb") as f:
_save_model_to_fileobj(model, f, weights_format)
def _serialize_model_as_json(model):
with ObjectSharingScope():
serialized_model_dict = serialize_keras_object(model)
config_json = json.dumps(serialized_model_dict)
metadata_json = json.dumps(
{
"keras_version": keras_version,
"date_saved": datetime.datetime.now().strftime("%Y-%m-%d@%H:%M:%S"),
}
)
return config_json, metadata_json
def _save_model_to_dir(model, dirpath, weights_format):
if not file_utils.exists(dirpath):
file_utils.makedirs(dirpath)
config_json, metadata_json = _serialize_model_as_json(model)
with open(file_utils.join(dirpath, _METADATA_FILENAME), "w") as f:
f.write(metadata_json)
with open(file_utils.join(dirpath, _CONFIG_FILENAME), "w") as f:
f.write(config_json)
weights_filepath = file_utils.join(dirpath, _VARS_FNAME_H5)
assert_dirpath = file_utils.join(dirpath, _ASSETS_DIRNAME)
try:
if weights_format == "h5":
weights_store = H5IOStore(weights_filepath, mode="w")
elif weights_format == "npz":
weights_store = NpzIOStore(weights_filepath, mode="w")
else:
raise ValueError(
"Unknown `weights_format` argument. "
"Expected 'h5' or 'npz'. "
f"Received: weights_format={weights_format}"
)
asset_store = DiskIOStore(assert_dirpath, mode="w")
_save_state(
model,
weights_store=weights_store,
assets_store=asset_store,
inner_path="",
visited_saveables=set(),
)
finally:
weights_store.close()
asset_store.close()
def _save_model_to_fileobj(model, fileobj, weights_format):
config_json, metadata_json = _serialize_model_as_json(model)
with zipfile.ZipFile(fileobj, "w") as zf:
with zf.open(_METADATA_FILENAME, "w") as f:
f.write(metadata_json.encode())
with zf.open(_CONFIG_FILENAME, "w") as f:
f.write(config_json.encode())
weights_file_path = None
weights_store = None
asset_store = None
write_zf = False
try:
if weights_format == "h5":
try:
if is_memory_sufficient(model):
# Load the model weights into memory before writing
# .keras if the system memory is sufficient.
weights_store = H5IOStore(
_VARS_FNAME_H5, archive=zf, mode="w"
)
else:
# Try opening the .h5 file, then writing it to `zf` at
# the end of the function call. This is more memory
# efficient than writing the weights into memory first.
working_dir = pathlib.Path(fileobj.name).parent
weights_file_path = tempfile.NamedTemporaryFile(
dir=working_dir
)
weights_store = H5IOStore(
weights_file_path.name, mode="w"
)
write_zf = True
except:
# If we can't use the local disk for any reason, write the
# weights into memory first, which consumes more memory.
weights_store = H5IOStore(
_VARS_FNAME_H5, archive=zf, mode="w"
)
elif weights_format == "npz":
weights_store = NpzIOStore(
_VARS_FNAME_NPZ, archive=zf, mode="w"
)
else:
raise ValueError(
"Unknown `weights_format` argument. "
"Expected 'h5' or 'npz'. "
f"Received: weights_format={weights_format}"
)
asset_store = DiskIOStore(_ASSETS_DIRNAME, archive=zf, mode="w")
_save_state(
model,
weights_store=weights_store,
assets_store=asset_store,
inner_path="",
visited_saveables=set(),
)
except:
# Skip the final `zf.write` if any exception is raised
write_zf = False
if weights_store:
weights_store.archive = None
raise
finally:
if weights_store:
weights_store.close()
if asset_store:
asset_store.close()
if write_zf and weights_file_path:
zf.write(weights_file_path.name, _VARS_FNAME_H5)
if weights_file_path:
weights_file_path.close()
def _upload_model_to_hf(model, hf_path, weights_format):
if huggingface_hub is None:
raise ImportError(
"To save models to the Hugging Face Hub, "
"you must install the `huggingface_hub` package."
)
original_hf_path = hf_path
if hf_path.startswith("hf://"):
hf_path = hf_path[5:]
if hf_path.count("/") > 1:
raise ValueError(
"Invalid `hf_path` argument: expected `namespace/model_name`"
f" format. Received: hf_path={original_hf_path}"
)
api = huggingface_hub.HfApi(
library_name="keras", library_version=keras_version
)
repo_url = api.create_repo(hf_path, exist_ok=True)
repo_id = repo_url.repo_id
with tempfile.TemporaryDirectory() as tmp_dir:
_save_model_to_dir(model, tmp_dir, weights_format)
model_card = _MODEL_CARD_TEMPLATE
if check_pydot():
plot_path = file_utils.join(tmp_dir, "assets", "summary_plot.png")
plot_model(
model,
to_file=plot_path,
show_layer_names=True,
show_shapes=True,
show_dtype=True,
)
if len(model.layers) <= 10:
model_card += "\n\n"
else:
model_card += (
"A plot of the model can be found "
"[here](./assets/summary_plot.png)."
)
with open(file_utils.join(tmp_dir, "README.md"), "w") as f:
f.write(model_card)
api.upload_folder(
repo_id=repo_id,
folder_path=tmp_dir,
commit_message="Save model using Keras.",
)
io_utils.print_msg(
f"Model saved to the Hugging Face Hub: {repo_url}\n"
"To load back the model, use "
f"`keras.saving.load_model('hf://{repo_id}')`"
)
def load_model(filepath, custom_objects=None, compile=True, safe_mode=True):
"""Load a zip archive representing a Keras model."""
if isinstance(filepath, io.IOBase):
return _load_model_from_fileobj(
filepath, custom_objects, compile, safe_mode
)
elif str(filepath).startswith("hf://"):
if huggingface_hub is None:
raise ImportError(
"To load models from the Hugging Face Hub, "
"you must install the `huggingface_hub` package."
)
repo_id = filepath[5:]
folder_path = huggingface_hub.snapshot_download(
repo_id=repo_id,
library_name="keras",
library_version=keras_version,
)
return _load_model_from_dir(
folder_path, custom_objects, compile, safe_mode
)
else:
filepath = str(filepath)
if not filepath.endswith(".keras"):
is_keras_dir = file_utils.isdir(filepath) and file_utils.exists(
file_utils.join(filepath, "config.json")
)
if is_keras_dir:
return _load_model_from_dir(
filepath, custom_objects, compile, safe_mode
)
raise ValueError(
"Invalid filename: expected a `.keras` extension. "
f"Received: filepath={filepath}"
)
with open(filepath, "rb") as f:
return _load_model_from_fileobj(
f, custom_objects, compile, safe_mode
)
def _load_model_from_dir(dirpath, custom_objects, compile, safe_mode):
if not file_utils.exists(dirpath):
raise ValueError(f"Directory doesn't exist: {dirpath}")
if not file_utils.isdir(dirpath):
raise ValueError(f"Path isn't a directory: {dirpath}")
with open(file_utils.join(dirpath, _CONFIG_FILENAME), "r") as f:
config_json = f.read()
model = _model_from_config(config_json, custom_objects, compile, safe_mode)
all_filenames = file_utils.listdir(dirpath)
try:
if _VARS_FNAME_H5 in all_filenames:
weights_file_path = file_utils.join(dirpath, _VARS_FNAME_H5)
weights_store = H5IOStore(weights_file_path, mode="r")
elif _VARS_FNAME_NPZ in all_filenames:
weights_file_path = file_utils.join(dirpath, _VARS_FNAME_NPZ)
weights_store = NpzIOStore(weights_file_path, mode="r")
else:
raise ValueError(
f"Expected a {_VARS_FNAME_H5} or {_VARS_FNAME_NPZ} file."
)
if len(all_filenames) > 3:
asset_store = DiskIOStore(
file_utils.join(dirpath, _ASSETS_DIRNAME), mode="r"
)
else:
asset_store = None
failed_saveables = set()
error_msgs = {}
_load_state(
model,
weights_store=weights_store,
assets_store=asset_store,
inner_path="",
visited_saveables=set(),
failed_saveables=failed_saveables,
error_msgs=error_msgs,
)
finally:
weights_store.close()
if asset_store:
asset_store.close()
if failed_saveables:
_raise_loading_failure(error_msgs)
return model
def _model_from_config(config_json, custom_objects, compile, safe_mode):
# Note: we should NOT use a custom JSON decoder. Anything that
# needs custom decoding must be handled in deserialize_keras_object.
config_dict = json.loads(config_json)
if not compile:
# Disable compilation
config_dict["compile_config"] = None
# Construct the model from the configuration file in the archive.
with ObjectSharingScope():
model = deserialize_keras_object(
config_dict, custom_objects, safe_mode=safe_mode
)
return model
def _load_model_from_fileobj(fileobj, custom_objects, compile, safe_mode):
with zipfile.ZipFile(fileobj, "r") as zf:
with zf.open(_CONFIG_FILENAME, "r") as f:
config_json = f.read()
model = _model_from_config(
config_json, custom_objects, compile, safe_mode
)
all_filenames = zf.namelist()
extract_dir = None
weights_store = None
asset_store = None
try:
if _VARS_FNAME_H5 in all_filenames:
try:
if is_memory_sufficient(model):
# Load the entire file into memory if the system memory
# is sufficient.
io_file = io.BytesIO(
zf.open(_VARS_FNAME_H5, "r").read()
)
weights_store = H5IOStore(io_file, mode="r")
else:
# Try extracting the model.weights.h5 file, and then
# loading it using using h5py. This is significantly
# faster than reading from the zip archive on the fly.
extract_dir = tempfile.TemporaryDirectory(
dir=pathlib.Path(fileobj.name).parent
)
zf.extract(_VARS_FNAME_H5, extract_dir.name)
weights_store = H5IOStore(
pathlib.Path(extract_dir.name, _VARS_FNAME_H5),
mode="r",
)
except:
# If we can't use the local disk for any reason, read the
# weights from the zip archive on the fly, which is less
# efficient.
weights_store = H5IOStore(_VARS_FNAME_H5, zf, mode="r")
elif _VARS_FNAME_NPZ in all_filenames:
weights_store = NpzIOStore(_VARS_FNAME_NPZ, zf, mode="r")
else:
raise ValueError(
f"Expected a {_VARS_FNAME_H5} or {_VARS_FNAME_NPZ} file."
)
if len(all_filenames) > 3:
asset_store = DiskIOStore(_ASSETS_DIRNAME, archive=zf, mode="r")
failed_saveables = set()
error_msgs = {}
_load_state(
model,
weights_store=weights_store,
assets_store=asset_store,
inner_path="",
visited_saveables=set(),
failed_saveables=failed_saveables,
error_msgs=error_msgs,
)
finally:
if weights_store:
weights_store.close()
if asset_store:
asset_store.close()
if extract_dir:
extract_dir.cleanup()
if failed_saveables:
_raise_loading_failure(error_msgs)
return model
def save_weights_only(
model, filepath, max_shard_size=None, objects_to_skip=None
):
"""Save only the weights of a model to a target filepath.
Supports both `.weights.h5` and `.keras`.
"""
if not model.built:
raise ValueError(
"You are saving a model that has not yet been built. "
"Try building the model first by calling it on some data or "
"by using `build()`."
)
filepath_str = str(filepath)
tmp_dir = None
remote_filepath = None
if max_shard_size is None and not filepath_str.endswith(".weights.h5"):
raise ValueError(
"The filename must end in `.weights.h5`. "
f"Received: filepath={filepath_str}"
)
elif max_shard_size is not None and not filepath_str.endswith(
("weights.h5", "weights.json")
):
raise ValueError(
"The filename must end in `.weights.json` when `max_shard_size` is "
f"specified. Received: filepath={filepath_str}"
)
try:
if file_utils.is_remote_path(filepath):
tmp_dir = get_temp_dir()
local_filepath = os.path.join(tmp_dir, os.path.basename(filepath))
remote_filepath = filepath
filepath = local_filepath
if max_shard_size is not None:
weights_store = ShardedH5IOStore(filepath, max_shard_size, mode="w")
else:
weights_store = H5IOStore(filepath, mode="w")
if objects_to_skip is not None:
visited_saveables = set(id(o) for o in objects_to_skip)
else:
visited_saveables = set()
_save_state(
model,
weights_store=weights_store,
assets_store=None,
inner_path="",
visited_saveables=visited_saveables,
)
weights_store.close()
finally:
if tmp_dir is not None:
file_utils.copy(filepath, remote_filepath)
shutil.rmtree(tmp_dir)
def load_weights_only(
model, filepath, skip_mismatch=False, objects_to_skip=None
):
"""Load the weights of a model from a filepath (.keras or .weights.h5).
Note: only supports h5 for now.
"""
if not model.built:
raise ValueError(
"You are loading weights into a model that has not yet been built. "
"Try building the model first by calling it on some data or "
"by using `build()`."
)
archive = None
tmp_dir = None
filepath_str = str(filepath)
try:
if file_utils.is_remote_path(filepath_str):
tmp_dir = get_temp_dir()
local_filepath = os.path.join(
tmp_dir, os.path.basename(filepath_str)
)
file_utils.copy(filepath_str, local_filepath)
filepath_str = filepath = local_filepath
if filepath_str.endswith("weights.h5"):
weights_store = H5IOStore(filepath, mode="r")
elif filepath_str.endswith("weights.json"):
weights_store = ShardedH5IOStore(filepath, mode="r")
elif filepath_str.endswith(".keras"):
archive = zipfile.ZipFile(filepath, "r")
weights_store = H5IOStore(_VARS_FNAME_H5, archive=archive, mode="r")
failed_saveables = set()
if objects_to_skip is not None:
visited_saveables = set(id(o) for o in objects_to_skip)
else:
visited_saveables = set()
error_msgs = {}
_load_state(
model,
weights_store=weights_store,
assets_store=None,
inner_path="",
skip_mismatch=skip_mismatch,
visited_saveables=visited_saveables,
failed_saveables=failed_saveables,
error_msgs=error_msgs,
)
weights_store.close()
if archive:
archive.close()
if failed_saveables:
_raise_loading_failure(error_msgs, warn_only=skip_mismatch)
finally:
if tmp_dir is not None:
shutil.rmtree(tmp_dir)
def _raise_loading_failure(error_msgs, warn_only=False):
first_key = list(error_msgs.keys())[0]
ex_saveable, ex_error = error_msgs[first_key]
msg = (
f"A total of {len(error_msgs)} objects could not "
"be loaded. Example error message for "
f"object {ex_saveable}:\n\n"
f"{ex_error}\n\n"
"List of objects that could not be loaded:\n"
f"{[x[0] for x in error_msgs.values()]}"
)
if warn_only:
warnings.warn(msg)
else:
raise ValueError(msg)
def _write_to_zip_recursively(zipfile_to_save, system_path, zip_path):
if not file_utils.isdir(system_path):
zipfile_to_save.write(system_path, zip_path)
else:
for file_name in file_utils.listdir(system_path):
system_file_path = file_utils.join(system_path, file_name).replace(
"\\", "/"
)
zip_file_path = file_utils.join(zip_path, file_name).replace(
"\\", "/"
)
_write_to_zip_recursively(
zipfile_to_save, system_file_path, zip_file_path
)
def _name_key(name):
"""Make sure that private attributes are visited last."""
if name.startswith("_"):
return "~" + name
return name
def _walk_saveable(saveable):
from keras.src.saving.keras_saveable import KerasSaveable
if not isinstance(saveable, KerasSaveable):
raise ValueError(
"Expected object to be an "
"instance of `KerasSaveable`, but "
f"got {saveable} of type {type(saveable)}"
)
obj_type = saveable._obj_type()
attr_skipset = get_attr_skipset(obj_type)
# Save all layers directly tracked by Sequential and Functional first.
# This helps avoid ordering concerns for subclassed Sequential or Functional
# models with extra attributes--the internal Keras state take precedence.
if obj_type in ("Sequential", "Functional"):
yield "layers", saveable.layers
for child_attr in sorted(dir(saveable), key=lambda x: _name_key(x)):
if child_attr.startswith("__") or child_attr in attr_skipset:
continue
try:
child_obj = getattr(saveable, child_attr)
except Exception:
# Avoid raising the exception when visiting the attributes.
continue
yield child_attr, child_obj
def _save_state(
saveable,
weights_store,
assets_store,
inner_path,
visited_saveables,
):
from keras.src.saving.keras_saveable import KerasSaveable
if not isinstance(weights_store, (H5IOStore, ShardedH5IOStore, NpzIOStore)):
raise ValueError(
"Expected `weights_store` to be an instance of "
"`H5IOStore`, `ShardedH5IOStore` or `NpzIOStore`. "
f"Received: {weights_store} of type {type(weights_store)}"
)
if not isinstance(assets_store, (DiskIOStore, type(None))):
raise ValueError(
"Expected `assets_store` to be an instance of "
"`DiskIOStore` or `None`. "
f"Received: {assets_store} of type {type(assets_store)}"
)
# If the saveable has already been saved, skip it.
if id(saveable) in visited_saveables:
return
if hasattr(saveable, "save_own_variables") and weights_store:
if hasattr(saveable, "name") and isinstance(saveable.name, str):
metadata = {"name": saveable.name}
else:
metadata = None
saveable.save_own_variables(
weights_store.make(inner_path, metadata=metadata)
)
if hasattr(saveable, "save_assets") and assets_store:
saveable.save_assets(assets_store.make(inner_path))
visited_saveables.add(id(saveable))
# Recursively save state of children saveables (layers, optimizers, etc.)
for child_attr, child_obj in _walk_saveable(saveable):
if isinstance(child_obj, KerasSaveable):
_save_state(
child_obj,
weights_store,
assets_store,
inner_path=file_utils.join(inner_path, child_attr).replace(
"\\", "/"
),
visited_saveables=visited_saveables,
)
elif isinstance(child_obj, (list, dict, tuple, set)):
_save_container_state(
child_obj,
weights_store,
assets_store,
inner_path=file_utils.join(inner_path, child_attr).replace(
"\\", "/"
),
visited_saveables=visited_saveables,
)
def _load_state(
saveable,
weights_store,
assets_store,
inner_path,
skip_mismatch=False,
visited_saveables=None,
failed_saveables=None,
error_msgs=None,
):
from keras.src.saving.keras_saveable import KerasSaveable
if not isinstance(weights_store, (H5IOStore, ShardedH5IOStore, NpzIOStore)):
raise ValueError(
"Expected `weights_store` to be an instance of "
"`H5IOStore`, `ShardedH5IOStore` or `NpzIOStore`. "
f"Received: {weights_store} of type {type(weights_store)}"
)
if not isinstance(assets_store, (DiskIOStore, type(None))):
raise ValueError(
"Expected `assets_store` to be an instance of "
"`DiskIOStore` or `None`. "
f"Received: {assets_store} of type {type(assets_store)}"
)
if visited_saveables and id(saveable) in visited_saveables:
return
failure = False
if hasattr(saveable, "load_own_variables") and weights_store:
if skip_mismatch or failed_saveables is not None:
try:
saveable.load_own_variables(weights_store.get(inner_path))
except Exception as e:
failed_saveables.add(id(saveable))
error_msgs[id(saveable)] = saveable, e
failure = True
else:
saveable.load_own_variables(weights_store.get(inner_path))
if hasattr(saveable, "load_assets") and assets_store:
if skip_mismatch or failed_saveables is not None:
try:
saveable.load_assets(assets_store.get(inner_path))
except Exception as e:
failed_saveables.add(id(saveable))
error_msgs[id(saveable)] = saveable, e
failure = True
else:
saveable.load_assets(assets_store.get(inner_path))
if failed_saveables is not None:
currently_failed = len(failed_saveables)
else:
currently_failed = 0
# Recursively load states for Keras saveables such as layers/optimizers.
for child_attr, child_obj in _walk_saveable(saveable):
if isinstance(child_obj, KerasSaveable):
_load_state(
child_obj,
weights_store,
assets_store,
inner_path=file_utils.join(inner_path, child_attr).replace(
"\\", "/"
),
skip_mismatch=skip_mismatch,
visited_saveables=visited_saveables,
failed_saveables=failed_saveables,
error_msgs=error_msgs,
)
elif isinstance(child_obj, (list, dict, tuple, set)):
_load_container_state(
child_obj,
weights_store,
assets_store,
inner_path=file_utils.join(inner_path, child_attr).replace(
"\\", "/"
),
skip_mismatch=skip_mismatch,
visited_saveables=visited_saveables,
failed_saveables=failed_saveables,
error_msgs=error_msgs,
)
if failed_saveables is not None:
newly_failed = len(failed_saveables) - currently_failed
else:
newly_failed = 0
if not failure:
if visited_saveables is not None and newly_failed <= 0:
visited_saveables.add(id(saveable))
if id(saveable) in failed_saveables:
failed_saveables.remove(id(saveable))
error_msgs.pop(id(saveable))
def _save_container_state(
container, weights_store, assets_store, inner_path, visited_saveables
):
from keras.src.saving.keras_saveable import KerasSaveable
used_names = {}
if isinstance(container, dict):
container = list(container.values())
for saveable in container:
if isinstance(saveable, KerasSaveable):
# Do NOT address the saveable via `saveable.name`, since
# names are usually autogenerated and thus not reproducible
# (i.e. they may vary across two instances of the same model).
name = naming.to_snake_case(saveable.__class__.__name__)
if name in used_names:
used_names[name] += 1
name = f"{name}_{used_names[name]}"
else:
used_names[name] = 0
_save_state(
saveable,
weights_store,
assets_store,
inner_path=file_utils.join(inner_path, name).replace("\\", "/"),
visited_saveables=visited_saveables,
)
def _load_container_state(
container,
weights_store,
assets_store,
inner_path,
skip_mismatch,
visited_saveables,
failed_saveables,
error_msgs,
):
from keras.src.saving.keras_saveable import KerasSaveable
used_names = {}
if isinstance(container, dict):
container = list(container.values())
for saveable in container:
if isinstance(saveable, KerasSaveable):
name = naming.to_snake_case(saveable.__class__.__name__)
if name in used_names:
used_names[name] += 1
name = f"{name}_{used_names[name]}"
else:
used_names[name] = 0
_load_state(
saveable,
weights_store,
assets_store,
inner_path=file_utils.join(inner_path, name).replace("\\", "/"),
skip_mismatch=skip_mismatch,
visited_saveables=visited_saveables,
failed_saveables=failed_saveables,
error_msgs=error_msgs,
)
class DiskIOStore:
"""Asset store backed by disk storage.
If `archive` is specified, then `root_path` refers to the filename
inside the archive.
If `archive` is not specified, then `root_path` refers to the full path of
the target directory.
"""
def __init__(self, root_path, archive=None, mode=None):
self.mode = mode
self.root_path = root_path
self.archive = archive
self.tmp_dir = None
if self.archive:
self.tmp_dir = get_temp_dir()
if self.mode == "r":
self.archive.extractall(path=self.tmp_dir)
self.working_dir = file_utils.join(
self.tmp_dir, self.root_path
).replace("\\", "/")
if self.mode == "w":
file_utils.makedirs(self.working_dir)
else:
if mode == "r":
self.working_dir = root_path
else:
self.tmp_dir = get_temp_dir()
self.working_dir = file_utils.join(
self.tmp_dir, self.root_path
).replace("\\", "/")
file_utils.makedirs(self.working_dir)
def make(self, path):
if not path:
return self.working_dir
path = file_utils.join(self.working_dir, path).replace("\\", "/")
if not file_utils.exists(path):
file_utils.makedirs(path)
return path
def get(self, path):
if not path:
return self.working_dir
path = file_utils.join(self.working_dir, path).replace("\\", "/")
if file_utils.exists(path):
return path
return None
def close(self):
if self.mode == "w" and self.archive:
_write_to_zip_recursively(
self.archive, self.working_dir, self.root_path
)
if self.tmp_dir and file_utils.exists(self.tmp_dir):
file_utils.rmtree(self.tmp_dir)
class H5IOStore:
"""Numerical variable store backed by HDF5.
Args:
path_or_io: `str`, `pathlib.Path` or `io.BytesIO` object. The path where
to save the model.
archive: Optional `zipfile.ZipFile` object. If specified, the h5 file
will be saved inside the archive and `path_or_io` will be used as
the filename.
mode: `str`. One of {`"r"`, `"w"`}. The mode to open the h5 file.
Defaults to `"r"`.
"""
def __init__(self, path_or_io, archive=None, mode="r"):
if mode not in ("w", "r"):
raise ValueError(
f"`mode` should be either 'w' or 'r'. Received: {mode}"
)
if isinstance(path_or_io, (str, pathlib.Path)):
self.path_or_io = pathlib.Path(path_or_io)
elif isinstance(path_or_io, io.BytesIO):
if archive is not None:
raise ValueError(
"When `path_or_io` is an `io.BytesIO` object, `archive` "
"should be `None`."
)
self.path_or_io = path_or_io
else:
raise TypeError(
"`path_or_io` should be a `str`, `pathlib.Path` or "
f"`io.BytesIO` object. Received: path_or_io={path_or_io} of "
f"type {type(path_or_io)}."
)
self.mode = mode
self.archive = archive
self.io_file = None
# Init H5 file.
self.h5_file = self._get_h5_file(self.path_or_io)
# Init H5 entry group.
self._h5_entry_path = None
self._h5_entry_group = {}
self._h5_entry_metadata = None
self._h5_entry_initialized = False
def __bool__(self):
# Delegate `__bool__` to the underlying `h5_file`. Otherwise, Python
# will mistakenly using `__len__` to determine the value.
return self.h5_file.__bool__()
def _get_h5_file(self, path_or_io):
if self.archive:
if self.mode == "w":
self.io_file = io.BytesIO()
else:
self.io_file = self.archive.open(str(path_or_io), "r")
return h5py.File(self.io_file, mode=self.mode)
else:
return h5py.File(path_or_io, mode=self.mode)
def make(self, path, metadata=None):
"""Make a new H5 entry group.
This method is only available in write mode. It defers the creation of
the H5 entry group until `__setitem__` is called, preventing the
creation of empty groups.
Args:
path: `str`. The variable path.
metadata: Optional `dict`. The metadata to save with the H5 entry
group. Defaults to `None`.
"""
if self.mode != "w":
raise ValueError("`make` is only allowed in write mode.")
if not isinstance(metadata, (dict, type(None))):
raise ValueError(
f"`metadata` should be a dict or `None`. Received: {metadata}"
)
self._h5_entry_path = path
if metadata:
self._create_h5_group(path, metadata=metadata)
else:
# Defer to `__setitem__` for H5 group creation to prevent the
# creation of empty groups when the store is unused.
self._h5_entry_group = {}
self._h5_entry_initialized = False
return self
def get(self, path):
"""Get the H5 entry group.
This method is only available in read mode.
Args:
path: `str`. The variable path.
"""
if self.mode != "r":
raise ValueError("`get` is only allowed in read mode.")
self._h5_entry_path = path
self._h5_entry_group = {} # Defaults to an empty dict if not found.
if not path:
if "vars" in self.h5_file:
self._h5_entry_group = self.h5_file["vars"]
elif path in self.h5_file and "vars" in self.h5_file[path]:
self._h5_entry_group = self.h5_file[path]["vars"]
else:
# No hit. Fix for 2.13 compatibility.
if "_layer_checkpoint_dependencies" in self.h5_file:
path = path.replace("layers", "_layer_checkpoint_dependencies")
if path in self.h5_file and "vars" in self.h5_file[path]:
self._h5_entry_group = self.h5_file[path]["vars"]
self._h5_entry_initialized = True
return self
def close(self):
self.h5_file.close()
if self.mode == "w" and self.archive:
self.archive.writestr(str(self.path_or_io), self.io_file.getvalue())
if self.io_file:
self.io_file.close()
# H5 entry level methods.
def _create_h5_group(self, path, metadata=None):
if not path:
self._h5_entry_group = self.h5_file.create_group("vars")
else:
self._h5_entry_group = self.h5_file.create_group(path).create_group(
"vars"
)
if metadata:
for k, v in metadata.items():
self._h5_entry_group.attrs[k] = v
self._h5_entry_initialized = True
def __len__(self):
return self._h5_entry_group.__len__()
def keys(self):
return self._h5_entry_group.keys()
def items(self):
return self._h5_entry_group.items()
def values(self):
return self._h5_entry_group.values()
def __getitem__(self, key):
value = self._h5_entry_group[key]
if (
hasattr(value, "attrs")
and "dtype" in value.attrs
and value.attrs["dtype"] == "bfloat16"
):
value = np.array(value, dtype=ml_dtypes.bfloat16)
return value
def __setitem__(self, key, value):
if self.mode != "w":
raise ValueError("Setting a value is only allowed in write mode.")
if not self._h5_entry_initialized:
self._create_h5_group(self._h5_entry_path)
value = backend.convert_to_numpy(value)
if backend.standardize_dtype(value.dtype) == "bfloat16":
ds = self._h5_entry_group.create_dataset(key, data=value)
ds.attrs["dtype"] = "bfloat16"
else:
self._h5_entry_group[key] = value
def __delitem__(self, key):
if self.mode != "w":
raise ValueError("Deleting a value is only allowed in write mode.")
del self._h5_entry_group[key]
def __contains__(self, item):
return item in self._h5_entry_group
class ShardedH5IOStore(H5IOStore):
"""Sharded numerical variable store backed by HDF5.
Args:
path_or_io: `str` or `pathlib.Path` object. The path where to save the
model.
max_shard_size: `int` or `float`. Maximum size in GB for each sharded
file. If `None`, no sharding will be done. Defaults to `None`.
archive: Optional `zipfile.ZipFile` object. If specified, the h5 file
will be saved inside the archive and `path_or_io` will be used as
the filename.
mode: `str`. One of {'r', 'w'}. The mode to open the h5 file. Defaults
to `"r"`.
"""
def __init__(self, path_or_io, max_shard_size=5, archive=None, mode="r"):
if mode not in ("w", "r"):
raise ValueError(
f"`mode` should be either 'w' or 'r'. Received: {mode}"
)
if not isinstance(path_or_io, (str, pathlib.Path)):
raise TypeError(
"`path_or_io` should be a `str`, `pathlib.Path` object. "
f"Received: path_or_io={path_or_io} of type {type(path_or_io)}."
)
self.path = pathlib.Path(path_or_io)
self.mode = mode
self.archive = archive
self.io_file = None
self.max_shard_size = float(max_shard_size)
self.base_name = self.path.stem.replace(".weights", "")
if self.path.suffix != ".json":
method = "Saving" if self.mode == "w" else "Loading"
new_path = self.path.with_suffix(".json")
warnings.warn(
f"{method} sharded weights requires `*.json` as the "
f"extension. The original path: {str(self.path)} will be "
f"renamed to {str(new_path)}."
)
self.path = new_path
# Init H5 entry group.
self._h5_entry_path = None
self._h5_entry_group = {}
self._h5_entry_metadata = None
self._h5_entry_initialized = False
# Init shard parameters.
self.current_shard_index = 0
self.current_shard_size = 0
self.total_shard_size = 0 # In bytes.
self.current_shard_path = None
if self.mode == "w":
self.sharding_config = {
"metadata": {
"total_size": 0,
},
"weight_map": {},
}
else:
if self.archive:
self.sharding_config = json.loads(
self.archive.open(str(self.path), "r").read()
)
else:
with open(self.path, "r") as map_file:
self.sharding_config = json.load(map_file)
self.h5_file = self._create_new_shard_file()
def get(self, path):
"""Get the H5 entry group.
This method is only available in read mode. If the path is not found in
the current shard, it will switch to the correct shard.
Args:
path: `str`. The variable path.
"""
if not path:
parsed_path = "/vars"
else:
parsed_path = path
# If not found, check shard map and switch files.
weight_map = self.sharding_config["weight_map"]
filename = weight_map.get(parsed_path) or weight_map.get(
"/" + parsed_path + "/vars"
)
if filename is not None and filename != self.current_shard_path.name:
self.close()
self.h5_file = self._get_h5_file(self.path.with_name(filename))
return super().get(path)
def close(self):
self.h5_file.close()
if self.mode == "w":
self.sharding_config["metadata"]["total_size"] = (
self.total_shard_size
)
json_str = json.dumps(self.sharding_config, indent=4)
if self.archive:
self.archive.writestr(str(self.path), json_str)
self.archive.writestr(
str(self.current_shard_path), self.io_file.getvalue()
)
else:
with open(self.path, "w") as f:
f.write(json_str)
if self.io_file:
self.io_file.close()
# Shard-specific methods.
def _create_new_shard_file(self):
new_shard_path = (
f"{self.base_name}_{self.current_shard_index:05}.weights.h5"
)
self.current_shard_index += 1
self.current_shard_path = self.path.with_name(new_shard_path)
return self._get_h5_file(self.current_shard_path)
# H5 entry level methods.
def __setitem__(self, key, value):
# Accumulate `current_shard_size`.
value = backend.convert_to_numpy(value)
dtype = backend.standardize_dtype(value.dtype)
weight_counts = math.prod(value.shape)
per_param_size = dtype_utils.dtype_size(dtype)
value_size = weight_counts * per_param_size / (8.0 * 1024**3) # To GB.
self.total_shard_size += weight_counts * per_param_size / 8 # In bytes.
if value_size > self.max_shard_size:
value_size_str = readable_memory_size(value_size * 1024**3)
max_shard_size_str = readable_memory_size(
self.max_shard_size * 1024**3
)
raise ValueError(
f"The size of {key} is {value_size_str} which "
f"exceeds the maximum shard size {max_shard_size_str}. You "
"can increase the `max_shard_size` parameter to accommodate "
"the size."
)
# Create a new shard if the current shard is full.
self.current_shard_size += value_size
if self.current_shard_size > self.max_shard_size:
self.close()
self.h5_file = self._create_new_shard_file()
self.make(self._h5_entry_path)
self.current_shard_size = value_size
super().__setitem__(key, value)
variable_path = self._h5_entry_group.name
if variable_path not in self.sharding_config["weight_map"]:
self.sharding_config["weight_map"][variable_path] = (
self.current_shard_path.name
)
class NpzIOStore:
def __init__(self, root_path, archive=None, mode="r"):
"""Numerical variable store backed by NumPy.savez/load.
If `archive` is specified, then `root_path` refers to the filename
inside the archive.
If `archive` is not specified, then `root_path` refers to the path of
the npz file on disk.
"""
self.root_path = root_path
self.mode = mode
self.archive = archive
if mode == "w":
self.contents = {}
else:
if self.archive:
self.f = archive.open(root_path, mode="r")
else:
self.f = open(root_path, mode="rb")
self.contents = np.load(self.f)
def make(self, path, metadata=None):
if not path:
self.contents["__root__"] = {}
return self.contents["__root__"]
self.contents[path] = {}
return self.contents[path]
def get(self, path):
if not path:
if "__root__" in self.contents:
return dict(self.contents["__root__"])
return {}
if path in self.contents:
return self.contents[path].tolist()
return {}
def close(self):
if self.mode == "w":
if self.archive:
self.f = self.archive.open(
self.root_path, mode="w", force_zip64=True
)
else:
self.f = open(self.root_path, mode="wb")
np.savez(self.f, **self.contents)
self.f.close()
def get_temp_dir():
temp_dir = tempfile.mkdtemp()
testfile = tempfile.TemporaryFile(dir=temp_dir)
testfile.close()
return temp_dir
def get_attr_skipset(obj_type):
skipset = global_state.get_global_attribute(
f"saving_attr_skiplist_{obj_type}", None
)
if skipset is not None:
return skipset
skipset = set(
[
"_self_unconditional_dependency_names",
]
)
if obj_type == "Layer":
ref_obj = Layer()
skipset.update(dir(ref_obj))
elif obj_type == "Functional":
ref_obj = Layer()
skipset.update(dir(ref_obj) + ["operations", "_operations"])
elif obj_type == "Sequential":
ref_obj = Layer()
skipset.update(dir(ref_obj) + ["_functional"])
elif obj_type == "Metric":
ref_obj_a = Metric()
ref_obj_b = CompileMetrics([], [])
skipset.update(dir(ref_obj_a) + dir(ref_obj_b))
elif obj_type == "Optimizer":
ref_obj = Optimizer(1.0)
skipset.update(dir(ref_obj))
skipset.remove("variables")
elif obj_type == "Loss":
ref_obj = Loss()
skipset.update(dir(ref_obj))
else:
raise ValueError(
f"get_attr_skipset got invalid {obj_type=}. "
"Accepted values for `obj_type` are "
"['Layer', 'Functional', 'Sequential', 'Metric', "
"'Optimizer', 'Loss']"
)
global_state.set_global_attribute(
f"saving_attr_skipset_{obj_type}", skipset
)
return skipset
def is_memory_sufficient(model):
"""Check if there is sufficient memory to load the model into memory.
If psutil is installed, we can use it to determine whether the memory is
sufficient. Otherwise, we use a predefined value of 1 GB for available
memory.
"""
if psutil is None:
available_memory = 1024 * 1024 * 1024 # 1 GB in bytes
else:
available_memory = psutil.virtual_memory().available # In bytes
return (
weight_memory_size(model.variables)
< available_memory * _MEMORY_UPPER_BOUND
)
|