14"""Collection of helpers to manage absl flags in colab."""
18 """Stub for absl flag to be used within a jupyter notebook."""
20 def __init__(self, name: str, value: str, doc: str):
27 """Returns the value passed at creation."""
32 """Returns the name of the parameter."""
41 """Stub for absl flag to be used within a jupyter notebook."""
43 def __init__(self, name: str, value: int, doc: str):
50 """Returns the value passed at creation."""
55 """Returns the name of the parameter."""
64 """Stub for absl flag to be used within a jupyter notebook."""
66 def __init__(self, name: str, value: float, doc: str):
73 """Returns the value passed at creation."""
78 """Returns the name of the parameter."""
87 """Stub for absl flag to be used within a jupyter notebook."""
89 def __init__(self, name: str, value: bool, doc: str):
96 """Returns the value passed at creation."""
101 """Returns the name of the parameter."""