Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pytorchjob
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engin Eren
Pytorchjob
Commits
47cf9a21
Commit
47cf9a21
authored
2 years ago
by
Engin Eren
Browse files
Options
Downloads
Patches
Plain Diff
reverting back and BS = 50
parent
271991f1
No related branches found
Branches containing commit
No related tags found
1 merge request
!3
Test
Pipeline
#3983825
passed
2 years ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
models/data_loaderFull.py
+3
-3
3 additions, 3 deletions
models/data_loaderFull.py
wganHCAL.py
+8
-8
8 additions, 8 deletions
wganHCAL.py
with
11 additions
and
11 deletions
models/data_loaderFull.py
+
3
−
3
View file @
47cf9a21
...
...
@@ -26,13 +26,13 @@ class HDF5Dataset(data.Dataset):
def
__getitem__
(
self
,
index
):
# get ECAL part
x
=
self
.
get_data
(
index
)
#
x = torch.from_numpy(x).float()
x
=
torch
.
from_numpy
(
x
).
float
()
## get HCAL part
y
=
self
.
get_data_hcal
(
index
)
#
y = torch.from_numpy(y).float()
y
=
torch
.
from_numpy
(
y
).
float
()
e
=
self
.
get_energy
(
index
)
e
=
torch
.
from_numpy
(
self
.
get_energy
(
index
)
)
return
x
,
y
,
e
...
...
This diff is collapsed.
Click to expand it.
wganHCAL.py
+
8
−
8
View file @
47cf9a21
...
...
@@ -57,14 +57,14 @@ def train(args, aD, aG, device, train_loader, optimizer_d, optimizer_g, epoch, e
Tensor
=
torch
.
cuda
.
FloatTensor
for
batch_idx
,
(
dataE
,
dataH
,
energy
)
in
enumerate
(
train_loader
):
#real_dataECAL = dataE.to(device).unsqueeze(1)
real_dataECAL
=
torch
.
from_numpy
(
dataE
).
to
(
device
).
unsqueeze
(
1
).
float
()
real_dataECAL
=
dataE
.
to
(
device
).
unsqueeze
(
1
).
float
()
#real_dataHCAL = dataH.to(device).unsqueeze(1)
real_dataHCAL
=
torch
.
from_numpy
(
dataH
).
to
(
device
).
unsqueeze
(
1
).
float
()
#real_label = energy.to(device)
real_label
=
torch
.
from_numpy
(
energy
).
to
(
device
).
float
()
real_dataHCAL
=
dataH
.
to
(
device
).
unsqueeze
(
1
).
float
()
real_label
=
energy
.
to
(
device
).
float
()
optimizer_d
.
zero_grad
()
...
...
@@ -138,8 +138,8 @@ def is_distributed():
def
parse_args
():
parser
=
argparse
.
ArgumentParser
(
description
=
'
WGAN training on hadron showers
'
)
parser
.
add_argument
(
'
--batch-size
'
,
type
=
int
,
default
=
10
0
,
metavar
=
'
N
'
,
help
=
'
input batch size for training (default:
10
0)
'
)
parser
.
add_argument
(
'
--batch-size
'
,
type
=
int
,
default
=
5
0
,
metavar
=
'
N
'
,
help
=
'
input batch size for training (default:
5
0)
'
)
parser
.
add_argument
(
'
--nz
'
,
type
=
int
,
default
=
100
,
metavar
=
'
N
'
,
help
=
'
latent space for generator (default: 100)
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment