Skip to content
Snippets Groups Projects
Commit bf40cb44 authored by Laurent COLBOIS's avatar Laurent COLBOIS
Browse files

[FRGC][Performance] Make FRGC memory_demanding; implement hash trick for checkpointing

parent 94a2daaa
No related branches found
No related tags found
1 merge request!147FRGC Fixes - Round 2
......@@ -13,6 +13,7 @@ from bob.extension import rc
from bob.extension.download import get_file
import bob.io.base
from sklearn.pipeline import make_pipeline
from bob.pipelines.utils import hash_string
class FRGCDatabase(CSVDataset):
......@@ -49,8 +50,11 @@ class FRGCDatabase(CSVDataset):
fixed_positions=fixed_positions,
allow_scoring_with_all_biometric_references=True,
group_probes_by_reference_id=True,
memory_demanding=True,
)
self.hash_fn = hash_string
@staticmethod
def protocols():
# TODO: Until we have (if we have) a function that dumps the protocols, let's use this one.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment