Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ViiSkor committed Oct 31, 2023
1 parent 93d5530 commit 40b798c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install tensorflow-cpu
working-directory: .

- name: Run Pylint
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Implemented approach is pretty simple.
* Undersampling
* Augmentation
* BatchNormalization
* Dice + BSE Loss
* Dice + BCE Loss

### Technologies
* Python 3.9
Expand Down Expand Up @@ -69,8 +69,8 @@ To verify that your code adheres to python standards run linting as shown below:


## Featured Notebooks
* [EDA Notebook](link)
* [Kaggle Notebook](link)
* [EDA Notebook](https://github.com/ViiSkor/SatelliteImgOfShips/blob/master/notebooks/airbus-eda.ipynb)
* [Kaggle Notebook](https://github.com/ViiSkor/SatelliteImgOfShips/blob/master/notebooks/kaggle-notebook.ipynb)

## Project Contents

Expand All @@ -83,7 +83,7 @@ To verify that your code adheres to python standards run linting as shown below:
├── notebooks <- Notebooks for analysis and testing
│ ├── airbus-eda <- Notebooks for EDA
│ └── Kaggle_Notebook <- Notebooks for Kaggle notebook that was used to run this project and inference testing.
│ └── kaggle-notebook <- Notebooks for Kaggle notebook that was used to run this project and inference testing.
├── core <- Code for use in this project.
│ ├── data <- Example python package - place shared code in such a package
Expand Down
4 changes: 2 additions & 2 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ preprocessing:
train:
learning_rate: 0.01
batch_size: 64
epochs: 10
epochs: 70
shuffle: True
do_augmentation: True
reduceLROnPlat:
factor: 0.33
patience: 2
patience: 10
min_delta: 0.0001
min_lr: 0.00000001
cooldown: 0
Expand Down

0 comments on commit 40b798c

Please sign in to comment.