-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "quickstart-pennylane"
version = "1.0.0"
description = "Quantum Federated Learning with PennyLane and Flower"
license = "Apache-2.0"
authors = [
{ name = "SECQUOIA Research Group", website = "https://secquoia.github.io/" },
{ name = "David Bernal Neira", email = "dbernaln@purdue.edu" },
{ name = "Daniel Anoruo", email = "danoruo1@students.towson.edu" },
{ name = "Alan Yi", email = "yi161@purdue.edu" }
]
dependencies = [
"flwr[simulation]>=1.27.0",
"flwr-datasets[vision]>=0.6.0",
"torch==2.8.0",
"torchvision==0.23.0",
"pennylane==0.41.1",
"autoray>=0.6,<0.7",
]
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.flwr.app]
publisher = "flwrlabs"
[tool.flwr.app.components]
serverapp = "quickstart_pennylane.server_app:app"
clientapp = "quickstart_pennylane.client_app:app"
[tool.flwr.app.config]
num-server-rounds = 10
batch-size = 32
local-epochs = 2
learning-rate = 0.001
fraction-train = 1.0
fraction-evaluate = 0.5
# Quantum circuit configuration
n-qubits = 4
n-layers = 3