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

Commit

Permalink
reset
Browse files Browse the repository at this point in the history
  • Loading branch information
javier-alvarez committed Dec 2, 2021
1 parent 3fc71b8 commit b9efc17
Show file tree
Hide file tree
Showing 310 changed files with 24,132 additions and 9,279 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
ignore = E226,E302,E41,W391, E701, W291, E722, W503, E128, E126, E127, E731, E401
max-line-length = 160
max-complexity = 25
exclude = fastMRI/ test_outputs/
exclude = fastMRI/ test_outputs/ hi-ml/
4 changes: 3 additions & 1 deletion .github/workflows/linting_and_hello_world.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- uses: actions/checkout@v2
with:
lfs: true
submodules: true

- name: flake8
run: |
Expand Down Expand Up @@ -58,7 +59,8 @@ jobs:
- uses: actions/checkout@v2
with:
lfs: true

submodules: true

- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: InnerEye
Expand Down
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ dmypy.json

# other
.vscode/
.devcontainer/

/InnerEye/ML/src/aml_config
*.exe
Expand All @@ -157,4 +158,11 @@ Tests/ML/test_outputs
# This file contains the run recovery ID of the most recent job
most_recent_run.txt
# The default folder that contains downloaded Tensorboard files
tensorboard_runs
tensorboard_runs

# InnerEye-DataQuality
InnerEye-DataQuality/cifar-10-python.tar.gz
InnerEye-DataQuality/name_stats_scoring.png
InnerEye-DataQuality/cifar-10-batches-py
InnerEye-DataQuality/logs
InnerEye-DataQuality/data
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "fastMRI"]
path = fastMRI
url = https://github.com/facebookresearch/fastMRI
[submodule "hi-ml"]
path = hi-ml
url = https://github.com/microsoft/hi-ml
5 changes: 4 additions & 1 deletion .idea/InnerEye-DeepLearning.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/runConfigurations/Template__Run_ML_on_AzureML.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions .idea/runConfigurations/pytest_all_simple_tests.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
# See https://github.com/pre-commit/pre-commit-hooks/blob/master/.pre-commit-config.yaml for an example with more hooks

exclude: '^excluded_files_regex$'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: check-ast
- id: check-merge-conflict
- id: debug-statements
- id: mixed-line-ending
args: [--fix=lf]

- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies: [flake8-typing-imports==1.7.0]

- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v1.5.7
hooks:
- id: autopep8

- repo: https://github.com/ambv/black
rev: 21.9b0
hooks:
- id: black
language_version: python3.7
Loading

0 comments on commit b9efc17

Please sign in to comment.