Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Update README.md so that it no longer uses nonexisting arguments in t…
Browse files Browse the repository at this point in the history
…he example scripts
  • Loading branch information
cbaakman authored Dec 12, 2023
1 parent 58c4d68 commit e2cc1db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ data_set = DataSet(

# create the network
model = NeuralNet(data_set,cnn_reg,model_type='3d',task='reg',
cuda=False,plot=True,outdir=out)
cuda=False)

# change the optimizer (optional)
model.optimizer = optim.SGD(model.net.parameters(),
Expand Down Expand Up @@ -233,7 +233,7 @@ data_set = DataSet(
model = NeuralNet(data_set, cnn_reg, model_type='3d', task='reg',
pretrained_model="best_valid_model.pth.tar",
metrics_exporters=[OutputExporter(out)],
cuda=False, plot=True, outdir=out)
cuda=False)
# change the optimizer (optional)
model.optimizer = optim.SGD(model.net.parameters(),
Expand Down

0 comments on commit e2cc1db

Please sign in to comment.