I hereby claim:
- I am komodovaran on github.
- I am johannesthomsen (https://keybase.io/johannesthomsen) on keybase.
- I have a public key ASA7ZspSvDezz8oVcLVw-VhNPCSe9gxlo-6KnJoVbFyr3wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| from abc import ABC | |
| import streamlit as st | |
| class _TypedState: | |
| """ | |
| Values should be set here to appear in auto-complete. Otherwise assume they don't exist in the global state | |
| """ |
| from math import ceil | |
| from typing import Tuple, Generator | |
| import tensorflow as tf | |
| from tensorflow.python.data import Dataset | |
| from tensorflow.python.keras import Input | |
| from tensorflow.python.keras.layers import TimeDistributed, LSTM, Dense | |
| from tensorflow.python.keras.models import Model | |
| import numpy as np | |
| def check_tf_v2_3_gpus() -> None: |