Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Andrei-Claudiu Roibu
BrainMapper
Commits
2f498e71
Commit
2f498e71
authored
Mar 25, 2020
by
Andrei-Claudiu Roibu
🖥
Browse files
created the structure for the U-net file
parent
9c4903d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
BrainMapperUNet.py
0 → 100644
View file @
2f498e71
"""Brain Mapper U-Net Architecture
Description:
-------------
This folder contains the Pytorch implementation of the core U-net architecture.
This arcitecture predicts functional connectivity rsfMRI from structural connectivity information from dMRI.
Usage
-------------
To use this module, import it and instantiate is as you wish:
from BrainMapperUNet import BrainMapperUNet
deep_learning_model = BrainMapperUnet(parameters)
"""
import
numpy
as
np
import
torch
import
torch.nn
as
nn
class
BrainMapperUnet
(
nn
.
Module
):
"""
Description
"""
def
__init__
(
self
,
parameters
):
pass
def
forward
(
self
,
X
):
"""
Description
"""
return
None
def
enable_test_dropout
(
self
):
"""
Description
"""
return
None
def
save
(
self
,
path
):
"""
Description
"""
pass
def
predict
(
self
,
X
):
"""
Description
"""
return
None
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment