Skip to content
Snippets Groups Projects
Commit 14aa36ee authored by Mia Wang's avatar Mia Wang
Browse files

delete __init__.py

parent b33678de
No related branches found
No related tags found
No related merge requests found
from dataclasses import dataclass from dataclasses import dataclass
from flask import Flask, request, current_app from flask import Flask, request, current_app, render_template
# from flask_cors import CORS # from flask_cors import CORS
import subprocess import subprocess
import os import os
...@@ -19,11 +19,20 @@ from numpy import save, load ...@@ -19,11 +19,20 @@ from numpy import save, load
from tqdm import trange from tqdm import trange
torch.manual_seed(0) torch.manual_seed(0)
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
# import agents and its functions # import agents and its functions
from ..MetaAugment import UCB1_JC_py as UCB1_JC from MetaAugment import UCB1_JC_py as UCB1_JC
from ..MetaAugment import Evo_learner as Evo from MetaAugment import Evo_learner as Evo
print('@@@ import successful') print('@@@ import successful')
# import agents and its functions
# from ..MetaAugment import UCB1_JC_py as UCB1_JC
# from ..MetaAugment import Evo_learner as Evo
# print('@@@ import successful')
app = Flask(__name__) app = Flask(__name__)
......
...@@ -30,10 +30,10 @@ function App() { ...@@ -30,10 +30,10 @@ function App() {
return ( return (
<div> <div>
{/* <Home /> */} <Home />
{/* <Confirm /> */} {/* <Confirm /> */}
{/* <Progress /> */} {/* <Progress /> */}
<Result /> {/* <Result /> */}
</div> </div>
); );
} }
......
...@@ -34,12 +34,11 @@ export default function Result() { ...@@ -34,12 +34,11 @@ export default function Result() {
color='primary' color='primary'
size='large' size='large'
> >
Donwload Download
</Button> </Button>
<Typography> <Typography>
Please follow our documentation to apply this policy to your dataset. Please follow our documentation to apply this policy to your dataset.
</Typography> </Typography>
</CardContent> </CardContent>
</Card> </Card>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment