Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: osmr/imgclsmob
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.3
Choose a base ref
...
head repository: osmr/imgclsmob
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing 704 changed files with 277,467 additions and 11,511 deletions.
15 changes: 7 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# PyCharm ###
.idea
.idea/*
.idea/

# Visual Studio ###
Release
Release/*
Debug
Debug/*
.vs
.vs/*
Release/
Debug/
.vs/
*.VC.db
*.sdf
*.suo
@@ -127,3 +123,6 @@ venv.bak/

# mypy
.mypy_cache/

# Virtual Envs
venv*
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "pytorchcv"]
path = pytorchcv
url = https://github.com/osmr/pytorchcv
27 changes: 27 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
group: travis_latest
dist: jammy
language: python
cache: pip
python:
- "3.10"
#- nightly
#- pypy
#- pypy3
matrix:
allow_failures:
- python: nightly
- python: pypy
- python: pypy3
install:
#- pip install -r requirements.txt
- pip install flake8 # pytest # add another testing frameworks later
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics --exclude=./venv
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --max-complexity=49 --max-line-length=127 --statistics --exclude=./gluon/gluoncv2/models/others,./pytorchcv/pytorchcv/models/others,./chainer_/chainercv2/models/others,./keras_/kerascv/models/others,./tensorflow_/tensorflowcv/models/others,./other,./venv
script:
- true # pytest --capture=sys # add others tests here
notifications:
on_success: change
on_failure: change # `always` will be the setting once code changes slow down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 osmr
Copyright (c) 2018-2024 Oleg Sémery

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Loading