Genzo1010 commited on
Commit
c415510
·
verified ·
1 Parent(s): 55c28f4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import tensorflow as tf
2
+ import torch
3
+ from doctr import __version__ as doctr_version
4
+ import paddle
5
+ import sys
6
+
7
+ print(f"Python version: {sys.version}")
8
+ print(f"TensorFlow version: {tf.__version__}")
9
+ print(f"PyTorch version: {torch.__version__}")
10
+ print(f"Doctr version: {doctr_version}")
11
+ print(f"PaddlePaddle version: {paddle.__version__}")