shortened commentary on models
Browse files
app.py
CHANGED
@@ -471,16 +471,17 @@ with gr.Blocks(theme=theme) as demo:
|
|
471 |
Models
|
472 |
------
|
473 |
''')
|
|
|
474 |
gr.Markdown('''
|
475 |
**1. Baseline or Non-DA Network**: This network lacks DA components and only includes feature extractor and task-specific component Training only involves biased source domain data (with train, validation and if available, test splits). The network is trained to minimize the loss objective, which is specific to the task
|
476 |
''')
|
477 |
with gr.Row():
|
478 |
gr.Markdown('''
|
479 |
-
**2. DA (without EWC) Network**: This network includes DA specific components like domain classifier and gradient reversal layer in addition to the components of Non-DA (baseline) network. It uses two datasets, i.e., demographic-biased source dataset (same as baseline network with train, validation, and, if available, test splits) and demographic-neutral target dataset, which have less bias / no bias.
|
480 |
''')
|
481 |
with gr.Row():
|
482 |
gr.Markdown('''
|
483 |
-
**3. DA (with EWC) Network**: This network is similar to DA (without EWC) network, but enforces a regularization constraint on the parameters of feature extractor and task-specific component using EWC algorithm while training.
|
484 |
''')
|
485 |
with gr.Column():
|
486 |
with gr.Row():
|
|
|
471 |
Models
|
472 |
------
|
473 |
''')
|
474 |
+
with gr.Row():
|
475 |
gr.Markdown('''
|
476 |
**1. Baseline or Non-DA Network**: This network lacks DA components and only includes feature extractor and task-specific component Training only involves biased source domain data (with train, validation and if available, test splits). The network is trained to minimize the loss objective, which is specific to the task
|
477 |
''')
|
478 |
with gr.Row():
|
479 |
gr.Markdown('''
|
480 |
+
**2. DA (without EWC) Network**: This network includes DA specific components like domain classifier and gradient reversal layer in addition to the components of Non-DA (baseline) network. It uses two datasets, i.e., demographic-biased source dataset (same as baseline network with train, validation, and, if available, test splits) and demographic-neutral target dataset, which have less bias / no bias.
|
481 |
''')
|
482 |
with gr.Row():
|
483 |
gr.Markdown('''
|
484 |
+
**3. DA (with EWC) Network**: This network is similar to DA (without EWC) network, but enforces a regularization constraint on the parameters of feature extractor and task-specific component using EWC algorithm while training.
|
485 |
''')
|
486 |
with gr.Column():
|
487 |
with gr.Row():
|