Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import tensorflow as tf
|
2 |
+
import tensorflow_addons as tfa
|
3 |
+
import doctr
|
4 |
+
|
5 |
+
print(f"TensorFlow version: {tf.__version__}")
|
6 |
+
print(f"TensorFlow Addons version: {tfa.__version__}")
|
7 |
+
print(f"Doctr version: {doctr.__version__}")
|