simplify dependency to streamlit
Browse files
app.py
CHANGED
@@ -1,21 +1,6 @@
|
|
1 |
import os
|
2 |
import sys
|
3 |
-
import glob # Needed?
|
4 |
-
import json # needed?
|
5 |
-
import zipfile # needed?
|
6 |
-
import numpy as np
|
7 |
-
import pandas as pd
|
8 |
import streamlit as st
|
9 |
-
from tqdm import tqdm
|
10 |
-
from itertools import chain # needed?
|
11 |
-
|
12 |
-
import torch
|
13 |
-
from torch.utils.data import DataLoader
|
14 |
-
|
15 |
-
from rdkit import Chem
|
16 |
-
from rdkit.Chem import Draw
|
17 |
-
from rdkit.Chem import AllChem
|
18 |
-
from rdkit.Chem import DataStructs
|
19 |
|
20 |
sys.path.insert(0, os.path.abspath("src/"))
|
21 |
|
|
|
1 |
import os
|
2 |
import sys
|
|
|
|
|
|
|
|
|
|
|
3 |
import streamlit as st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
sys.path.insert(0, os.path.abspath("src/"))
|
6 |
|