Spaces:
Running
Running
alessandro trinca tornidor
commited on
Commit
•
0377306
1
Parent(s):
a1c02f9
doc: update README.md
Browse files- README.md +12 -2
- static/.gitignore +2 -1
README.md
CHANGED
@@ -22,7 +22,16 @@ You should be able to run it locally without any major issues as long as you’r
|
|
22 |
|
23 |
I upgraded the frontend (jquery@3.7.1, bootstrap@5.3.3) and backend (pytorch==1.13.1, numpy<2.0.0) libraries where possible: for example right now this project doesn't work with pytorch > 2.0.0, then we are locked with pytorch == 1.13.1.
|
24 |
|
25 |
-
###
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
|
27 |
- `aip_trainer.lambdas.lambdaTTS.*`
|
28 |
- `aip_trainer.models.models.getTTSModel()`
|
@@ -32,10 +41,11 @@ I upgraded the frontend (jquery@3.7.1, bootstrap@5.3.3) and backend (pytorch==1.
|
|
32 |
|
33 |
### TODO
|
34 |
|
35 |
-
- add e2e tests with playwright
|
36 |
- move from pytorch to onnxruntime
|
37 |
- refactor frontend with something more modern (e.g. vuejs)
|
38 |
- refactor css style with tailwindcss
|
|
|
39 |
|
40 |
## Online version
|
41 |
|
|
|
22 |
|
23 |
I upgraded the frontend (jquery@3.7.1, bootstrap@5.3.3) and backend (pytorch==1.13.1, numpy<2.0.0) libraries where possible: for example right now this project doesn't work with pytorch > 2.0.0, then we are locked with pytorch == 1.13.1.
|
24 |
|
25 |
+
### E2E tests with playwright
|
26 |
+
|
27 |
+
Normally I use Visual Studio Code to write and execute my playwright tests, however it's always possible to run them from cli (from the `static` folder, using a node package manager like `npm` or `pnpm`):
|
28 |
+
|
29 |
+
```bash
|
30 |
+
pnpm install
|
31 |
+
pnpm playwright test
|
32 |
+
```
|
33 |
+
|
34 |
+
### Unused classes and functions (now removed)
|
35 |
|
36 |
- `aip_trainer.lambdas.lambdaTTS.*`
|
37 |
- `aip_trainer.models.models.getTTSModel()`
|
|
|
41 |
|
42 |
### TODO
|
43 |
|
44 |
+
- add more e2e tests with playwright
|
45 |
- move from pytorch to onnxruntime
|
46 |
- refactor frontend with something more modern (e.g. vuejs)
|
47 |
- refactor css style with tailwindcss
|
48 |
+
- add an updated online version on Cloudflare or AWS
|
49 |
|
50 |
## Online version
|
51 |
|
static/.gitignore
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
playwright-report/*
|
2 |
-
node_modules
|
|
|
|
1 |
playwright-report/*
|
2 |
+
node_modules
|
3 |
+
test-results/*
|