Skip to content

Commit ded6065

Browse files
authored
Merge pull request #182 from InnopolisUni/dev
Dev
2 parents cfb7d8d + d07f4eb commit ded6065

File tree

354 files changed

+3746
-1251
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

354 files changed

+3746
-1251
lines changed

Diff for: .github/pull_request_template.md

+49

Diff for: .github/workflows/docker-image.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Docker Image CI
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "dev" ]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: [ "main", "dev" ]
88

99
jobs:
1010
build-on-ubuntu:

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,4 @@ deepchem_data_dir
127127
tests/lightning_logs
128128
pretrained/
129129
catboost_info
130+
unarchived/

Diff for: .readthedocs.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Set the version of Python and other tools you might need
9+
# build:
10+
# os: ubuntu-22.04
11+
# tools:
12+
# python: "3.10"
13+
14+
mkdocs:
15+
configuration: mkdocs.yml
16+
17+
# Optionally declare the Python requirements required to build your docs
18+
python:
19+
install:
20+
- requirements: docs/requirements.txt

Diff for: README.md

+6-40

Diff for: README_DEV.md

-2
This file was deleted.

Diff for: config/augmentations/classification.yaml

-16
This file was deleted.
File renamed without changes.
File renamed without changes.

Diff for: config/augmentations_test/combined/color_distortions.yaml renamed to config/augmentations/combined/color_distortions.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
color_distortions:
12
- _target_: albumentations.OneOf
23
p: 0.3
34
transforms:
@@ -10,4 +11,5 @@
1011
brightness_limit:
1112
- -0.05
1213
- 0.05
13-
contrast_limit: 0.5
14+
contrast_limit: 0.5
15+
File renamed without changes.

Diff for: config/augmentations/position/rotate.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
rotate:
2+
_target_: albumentations.Rotate
3+
limit:
4+
- 90
5+
p: 0.5
6+
always_apply: False

Diff for: config/augmentations/preprocessing/invert_img.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
invert_img:
2+
_target_: albumentations.InvertImg
3+
p: 0.5

Diff for: config/augmentations/segmentation_inference.yaml

-14
This file was deleted.

Diff for: config/augmentations/segmentation_satellite_imagery.yaml

-35
This file was deleted.

Diff for: config/augmentations/segmentation_stroke.yaml

-18
This file was deleted.

Diff for: config/augmentations_train/color/blur.yaml

-5
This file was deleted.

Diff for: config/augmentations_train/color/random_brightness_contrast.yaml

-8
This file was deleted.

Diff for: config/augmentations_train/color/random_gamma.yaml

-4
This file was deleted.

Diff for: config/augmentations_train/combined/none.yaml

Whitespace-only changes.

Diff for: config/augmentations_train/combined/spatial_distortions.yaml

-21
This file was deleted.

Diff for: config/augmentations_train/landslides-kanopus.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
defaults:
2-
- preprocessing:
3-
- combined:
2+
- /augmentations/preprocessing:
3+
- /augmentations/combined:
44
- none
5-
- position:
5+
- /augmentations/position:
66
- shift_scale_rotate
77
- flip
8-
- color:
9-
- postprocessing:
8+
- /augmentations/color:
9+
- /augmentations/postprocessing:

Diff for: config/augmentations_train/linear-roads-bin-seg.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
defaults:
2-
- preprocessing:
2+
- /augmentations/preprocessing:
33
- standard_images
4-
- combined:
4+
- /augmentations/combined:
55
- none
6-
- position:
6+
- /augmentations/position:
77
- random_resized_crop
88
- flip
99
- rotate90
1010
- transpose
1111
- grid_distortion
12-
- color:
12+
- /augmentations/color:
1313
- random_gamma
1414
- blur
15-
- postprocessing:
15+
- /augmentations/postprocessing:

Diff for: config/augmentations_train/osl.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
defaults:
2-
- preprocessing:
2+
- /augmentations/preprocessing:
33
- to_pil_image
44
- resize
5-
- combined:
5+
- /augmentations/combined:
66
- none
7-
- position:
7+
- /augmentations/position:
88
- random_horizontal_flip
9-
- color:
10-
- postprocessing:
9+
- /augmentations/color:
10+
- /augmentations/postprocessing:
1111
- to_tensor
1212
- normalize
1313
# task:

Diff for: config/augmentations_train/position/flip.yaml

-4
This file was deleted.

Diff for: config/augmentations_train/position/grid_distortion.yaml

-15
This file was deleted.

Diff for: config/augmentations_train/position/none.yaml

Whitespace-only changes.

0 commit comments

Comments
 (0)