-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcc1211
commit c9214de
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
# TFM-dashboard | ||
|
||
This is a visualization tool developed to easily show the results of apply Style Transfer. | ||
|
||
Has been developed with Python, using the Dash framework. | ||
|
||
To launch it, you can use mount it using docker compose: | ||
|
||
```docker-compose up``` | ||
|
||
Or launch it directly calling the `src/index.py` script after install all the required packages. | ||
|
||
## Scripts detail | ||
|
||
At `src/app.py` the Dash application is created. | ||
|
||
At `src/layouts.py` the main layout is defined. That is the application display we see when the app is launched. | ||
|
||
At `src/callbacks.py` the callback that makes the sliders works is defined. | ||
|
||
At `src/graph_functions.py` there are some functions to plot the images. The callback function also uses this graph functions. |