Repository: HarisIqbal88/PlotNeuralNet Branch: master Commit: e96bc852189c Files: 28 Total size: 86.9 KB Directory structure: gitextract_mf86ygiw/ ├── .gitignore ├── .idea/ │ ├── misc.xml │ ├── modules.xml │ ├── plotneuralnet.iml │ ├── vcs.xml │ └── workspace.xml ├── LICENSE ├── README.md ├── examples/ │ ├── AlexNet/ │ │ └── alexnet.tex │ ├── HED/ │ │ └── HED.tex │ ├── LeNet/ │ │ ├── lenet.tex │ │ └── lenet.txt │ ├── SoftmaxLoss/ │ │ └── SoftmaxLoss.tex │ ├── Unet/ │ │ └── Unet.tex │ ├── Unet_Ushape/ │ │ └── Unet_ushape.tex │ ├── VGG16/ │ │ └── vgg16.tex │ ├── fcn32s/ │ │ └── fcn32.tex │ └── fcn8s/ │ └── fcn8.tex ├── layers/ │ ├── Ball.sty │ ├── Box.sty │ ├── RightBandedBox.sty │ └── init.tex ├── pycore/ │ ├── __init__.py │ ├── blocks.py │ └── tikzeng.py ├── pyexamples/ │ ├── test_simple.py │ └── unet.py └── tikzmake.sh ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ *.aux *.log *.gz __pycache__ books project # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ ================================================ FILE: .idea/misc.xml ================================================ ================================================ FILE: .idea/modules.xml ================================================ ================================================ FILE: .idea/plotneuralnet.iml ================================================ ================================================ FILE: .idea/vcs.xml ================================================ ================================================ FILE: .idea/workspace.xml ================================================