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
If the user has in the local cache the entries for the results object retrieved from a remote inference job, edsl sets the values to True for those entries in cache_used_dict.
Example.
JSON retrieved from remote inference job executed without cache: "cache_used_dict":
{"color1": false, "color2": false},
"cache_keys": {
"color1": "e39278b591f2547376cd2978e9d18e51",
"color2":"d7298a0740d5ea6ca654ed5ea8680a95"
}}]
JSON data after the edsl loads the Results object "cache_used_dict": {
"color1": true,
"color2": true
},
"cache_keys": {
"color1": "e39278b591f2547376cd2978e9d18e51",
"color2": "d7298a0740d5ea6ca654ed5ea8680a95"
}
The text was updated successfully, but these errors were encountered:
If the user has in the local cache the entries for the results object retrieved from a remote inference job, edsl sets the values to True for those entries in cache_used_dict.
Example.
JSON retrieved from remote inference job executed without cache:
"cache_used_dict":
{"color1": false, "color2": false},
"cache_keys": {
"color1": "e39278b591f2547376cd2978e9d18e51",
"color2":"d7298a0740d5ea6ca654ed5ea8680a95"
}}]
JSON data after the edsl loads the Results object
"cache_used_dict": {
"color1": true,
"color2": true
},
"cache_keys": {
"color1": "e39278b591f2547376cd2978e9d18e51",
"color2": "d7298a0740d5ea6ca654ed5ea8680a95"
}
The text was updated successfully, but these errors were encountered: