Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
deepdraw
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
medai
software
deepdraw
Merge requests
!29
WIP: [Transform class] add ResizeCrop for drhagis
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: [Transform class] add ResizeCrop for drhagis
DrhagisUpdates
into
master
Overview
17
Commits
16
Pipelines
16
Changes
3
7 unresolved threads
Hide all comments
Closed
Driss KHALIL
requested to merge
DrhagisUpdates
into
master
3 years ago
Overview
17
Commits
16
Pipelines
16
Changes
3
7 unresolved threads
Hide all comments
Expand
0
0
Merge request reports
Compare
version 1
version 15
f835ed50
3 years ago
version 14
e38789cf
3 years ago
version 13
890b4719
3 years ago
version 12
1784da0f
3 years ago
version 11
2cf93fea
3 years ago
version 10
3ce0f20c
3 years ago
version 9
9fe0d804
3 years ago
version 8
a0a76595
3 years ago
version 7
2b19eb14
3 years ago
version 6
02783407
3 years ago
version 5
76109418
3 years ago
version 4
de2c0e79
3 years ago
version 3
44963546
3 years ago
version 2
b44bd4ca
3 years ago
version 1
5bf229bc
3 years ago
master (base)
and
version 14
latest version
9587d7f1
16 commits,
3 years ago
version 15
f835ed50
15 commits,
3 years ago
version 14
e38789cf
14 commits,
3 years ago
version 13
890b4719
13 commits,
3 years ago
version 12
1784da0f
12 commits,
3 years ago
version 11
2cf93fea
11 commits,
3 years ago
version 10
3ce0f20c
10 commits,
3 years ago
version 9
9fe0d804
9 commits,
3 years ago
version 8
a0a76595
8 commits,
3 years ago
version 7
2b19eb14
7 commits,
3 years ago
version 6
02783407
6 commits,
3 years ago
version 5
76109418
5 commits,
3 years ago
version 4
de2c0e79
4 commits,
3 years ago
version 3
44963546
3 commits,
3 years ago
version 2
b44bd4ca
2 commits,
3 years ago
version 1
5bf229bc
1 commit,
3 years ago
Show latest version
3 files
+
36
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
bob/ip/binseg/configs/datasets/drhagis/__init__.py
+
2
−
2
Options
@@ -3,8 +3,8 @@
def
_maker
(
protocol
):
from
....data.transforms
import
Resize
from
....data.transforms
import
Resize
,
ResizeCrop
from
....data.drhagis
import
dataset
as
raw
from
..
import
make_dataset
as
mk
return
mk
(
raw
.
subsets
(
protocol
),
[
Resize
((
1760
,
1760
))])
return
mk
(
raw
.
subsets
(
protocol
),
[
ResizeCrop
(),
Resize
((
1760
,
1760
))])
Loading