15"""Collection of helpers to manage absl flags in colab."""
19 """Stub for absl flag to be used within a jupyter notebook."""
21 def __init__(self, name: str, value: str, doc: str):
28 """Returns the value passed at creation."""
33 """Returns the name of the parameter."""
42 """Stub for absl flag to be used within a jupyter notebook."""
44 def __init__(self, name: str, value: int, doc: str):
51 """Returns the value passed at creation."""
56 """Returns the name of the parameter."""
65 """Stub for absl flag to be used within a jupyter notebook."""
67 def __init__(self, name: str, value: float, doc: str):
74 """Returns the value passed at creation."""
79 """Returns the name of the parameter."""
88 """Stub for absl flag to be used within a jupyter notebook."""
90 def __init__(self, name: str, value: bool, doc: str):
97 """Returns the value passed at creation."""
102 """Returns the name of the parameter."""