Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jackaraz committed Sep 5, 2024
1 parent 870a747 commit 4d956ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions qVAE.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def train(args):
"-nref",
type=int,
default=3,
help="Number of reference qubits, default 3.",
help="Number of reference/trash qubits, default 3.",
dest="NREF",
)
parameters.add_argument(
Expand All @@ -462,7 +462,7 @@ def train(args):
"--nepochs",
"-ne",
type=int,
default=300,
default=500,
help="Number of epochs, default 500.",
dest="EPOCHS",
)
Expand Down Expand Up @@ -494,7 +494,7 @@ def train(args):
"-par-emb",
type=int,
default=1,
help="Embed the dataset multiple times (increases number of qubits). Defaults to 1",
help="Embed the dataset multiple times in parallel (increases number of qubits). Defaults to 1 i.e. no parallel embedding.",
dest="PAREMBED",
)
parameters.add_argument(
Expand Down Expand Up @@ -528,7 +528,7 @@ def train(args):
"-feat-dim",
type=int,
default=-1,
help="Number of features to be included for training. Defaults to -1",
help="Number of features to be included for training. Defaults to -1 i.e. all",
dest="FEATDIM",
)

Expand All @@ -540,7 +540,7 @@ def train(args):
"-multi-gpu",
action="store_true",
default=False,
help="Parallelise on multiple GPUs",
help="Parallelise on multiple GPUs (not properly tested)",
dest="MULTIGPU",
)

Expand Down

0 comments on commit 4d956ba

Please sign in to comment.