├── .idea ├── encodings.xml ├── iCaRL_V4.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LwF.py ├── Readme.md ├── ResNet.py ├── __pycache__ ├── ResNet.cpython-36.pyc ├── iCIFAR100.cpython-36.pyc ├── iCaRL.cpython-36.pyc └── myNetwork.cpython-36.pyc ├── iCIFAR100.py ├── main.py └── myNetwork.py /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/iCaRL_V4.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/.idea/iCaRL_V4.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LwF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/LwF.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/Readme.md -------------------------------------------------------------------------------- /ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/ResNet.py -------------------------------------------------------------------------------- /__pycache__/ResNet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/__pycache__/ResNet.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/iCIFAR100.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/__pycache__/iCIFAR100.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/iCaRL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/__pycache__/iCaRL.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/myNetwork.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/__pycache__/myNetwork.cpython-36.pyc -------------------------------------------------------------------------------- /iCIFAR100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/iCIFAR100.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/main.py -------------------------------------------------------------------------------- /myNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRSAD/Implementation-of-Learning-without-Forgetting-for-multi-class/HEAD/myNetwork.py --------------------------------------------------------------------------------