Bladeren bron

Add .gitignore, remove IDE and cache files

main
jochen 1 maand geleden
bovenliggende
commit
b277df46db
41 gewijzigde bestanden met toevoegingen van 10 en 69 verwijderingen
  1. +10
    -0
      .gitignore
  2. +0
    -8
      .idea/.gitignore
  3. +0
    -10
      .idea/image-recognizer.iml
  4. +0
    -30
      .idea/inspectionProfiles/Project_Default.xml
  5. +0
    -6
      .idea/inspectionProfiles/profiles_settings.xml
  6. +0
    -7
      .idea/misc.xml
  7. +0
    -8
      .idea/modules.xml
  8. BIN
      __pycache__/main.cpython-310.pyc
  9. BIN
      data/__pycache__/mnist_loader.cpython-310.pyc
  10. BIN
      neural_net/__pycache__/epoch.cpython-310.pyc
  11. BIN
      neural_net/__pycache__/mnist.cpython-310.pyc
  12. BIN
      neural_net/__pycache__/neural_net.cpython-310.pyc
  13. BIN
      neural_net/__pycache__/trainer.cpython-310.pyc
  14. BIN
      neural_net/__pycache__/transform_layer.cpython-310.pyc
  15. BIN
      neural_net/activation_layers/__pycache__/activation_layer.cpython-310.pyc
  16. BIN
      neural_net/activation_layers/__pycache__/relu_layer.cpython-310.pyc
  17. BIN
      neural_net/functions/__pycache__/activation.cpython-310.pyc
  18. BIN
      neural_net/functions/__pycache__/loss.cpython-310.pyc
  19. BIN
      tests/__pycache__/mnist.cpython-310.pyc
  20. BIN
      tests/__pycache__/relu_layer.cpython-310.pyc
  21. BIN
      tests/__pycache__/sigmoid_layer.cpython-310.pyc
  22. BIN
      ui/__pycache__/app.cpython-310.pyc
  23. BIN
      ui/__pycache__/app_state.cpython-310.pyc
  24. BIN
      ui/components/__pycache__/digit_drawer.cpython-310.pyc
  25. BIN
      ui/components/__pycache__/label_with_refresh.cpython-310.pyc
  26. BIN
      ui/components/__pycache__/number_slider.cpython-310.pyc
  27. BIN
      ui/components/__pycache__/plot_figure.cpython-310.pyc
  28. BIN
      ui/front_page/__pycache__/front_page.cpython-310.pyc
  29. BIN
      ui/front_page/plots/__pycache__/gradients.cpython-310.pyc
  30. BIN
      ui/front_page/plots/__pycache__/layer_weights.cpython-310.pyc
  31. BIN
      ui/front_page/plots/__pycache__/loss.cpython-310.pyc
  32. BIN
      ui/front_page/plots/__pycache__/predictions.cpython-310.pyc
  33. BIN
      ui/front_page/sections/__pycache__/model_overview_section.cpython-310.pyc
  34. BIN
      ui/front_page/sections/__pycache__/neural_net_info_widget.cpython-310.pyc
  35. BIN
      ui/front_page/sections/__pycache__/test_model_section.cpython-310.pyc
  36. BIN
      ui/front_page/sections/__pycache__/training_information.cpython-310.pyc
  37. BIN
      ui/front_page/sections/__pycache__/training_section.cpython-310.pyc
  38. BIN
      ui/icons/__pycache__/icons.cpython-310.pyc
  39. BIN
      ui/plotters/__pycache__/plotter.cpython-310.pyc
  40. BIN
      ui/training_page/__pycache__/training_page.cpython-310.pyc
  41. BIN
      utils/matplotlib/__pycache__/utils.cpython-310.pyc

+ 10
- 0
.gitignore Bestand weergeven

@@ -0,0 +1,10 @@
__pycache__/
*.py[cod]
*.pyo
.idea/
*.iml
.venv/
venv/
*.egg-info/
dist/
build/

+ 0
- 8
.idea/.gitignore Bestand weergeven

@@ -1,8 +0,0 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

+ 0
- 10
.idea/image-recognizer.iml Bestand weergeven

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

+ 0
- 30
.idea/inspectionProfiles/Project_Default.xml Bestand weergeven

@@ -1,30 +0,0 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="PyMethodParametersInspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
<inspection_tool class="PyPep8Inspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
<option name="ignoredErrors">
<list>
<option value="E111" />
<option value="E301" />
<option value="E252" />
<option value="E501" />
<option value="E231" />
<option value="E302" />
<option value="E305" />
<option value="E402" />
<option value="E401" />
<option value="E114" />
<option value="E261" />
</list>
</option>
</inspection_tool>
<inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
<option name="ignoredIdentifiers">
<list>
<option value="bool.*" />
</list>
</option>
</inspection_tool>
</profile>
</component>

+ 0
- 6
.idea/inspectionProfiles/profiles_settings.xml Bestand weergeven

@@ -1,6 +0,0 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

+ 0
- 7
.idea/misc.xml Bestand weergeven

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.10 (image-recognizer)" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (image-recognizer)" project-jdk-type="Python SDK" />
</project>

+ 0
- 8
.idea/modules.xml Bestand weergeven

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/image-recognizer.iml" filepath="$PROJECT_DIR$/.idea/image-recognizer.iml" />
</modules>
</component>
</project>

BIN
__pycache__/main.cpython-310.pyc Bestand weergeven


BIN
data/__pycache__/mnist_loader.cpython-310.pyc Bestand weergeven


BIN
neural_net/__pycache__/epoch.cpython-310.pyc Bestand weergeven


BIN
neural_net/__pycache__/mnist.cpython-310.pyc Bestand weergeven


BIN
neural_net/__pycache__/neural_net.cpython-310.pyc Bestand weergeven


BIN
neural_net/__pycache__/trainer.cpython-310.pyc Bestand weergeven


BIN
neural_net/__pycache__/transform_layer.cpython-310.pyc Bestand weergeven


BIN
neural_net/activation_layers/__pycache__/activation_layer.cpython-310.pyc Bestand weergeven


BIN
neural_net/activation_layers/__pycache__/relu_layer.cpython-310.pyc Bestand weergeven


BIN
neural_net/functions/__pycache__/activation.cpython-310.pyc Bestand weergeven


BIN
neural_net/functions/__pycache__/loss.cpython-310.pyc Bestand weergeven


BIN
tests/__pycache__/mnist.cpython-310.pyc Bestand weergeven


BIN
tests/__pycache__/relu_layer.cpython-310.pyc Bestand weergeven


BIN
tests/__pycache__/sigmoid_layer.cpython-310.pyc Bestand weergeven


BIN
ui/__pycache__/app.cpython-310.pyc Bestand weergeven


BIN
ui/__pycache__/app_state.cpython-310.pyc Bestand weergeven


BIN
ui/components/__pycache__/digit_drawer.cpython-310.pyc Bestand weergeven


BIN
ui/components/__pycache__/label_with_refresh.cpython-310.pyc Bestand weergeven


BIN
ui/components/__pycache__/number_slider.cpython-310.pyc Bestand weergeven


BIN
ui/components/__pycache__/plot_figure.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/__pycache__/front_page.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/plots/__pycache__/gradients.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/plots/__pycache__/layer_weights.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/plots/__pycache__/loss.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/plots/__pycache__/predictions.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/sections/__pycache__/model_overview_section.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/sections/__pycache__/neural_net_info_widget.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/sections/__pycache__/test_model_section.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/sections/__pycache__/training_information.cpython-310.pyc Bestand weergeven


BIN
ui/front_page/sections/__pycache__/training_section.cpython-310.pyc Bestand weergeven


BIN
ui/icons/__pycache__/icons.cpython-310.pyc Bestand weergeven


BIN
ui/plotters/__pycache__/plotter.cpython-310.pyc Bestand weergeven


BIN
ui/training_page/__pycache__/training_page.cpython-310.pyc Bestand weergeven


BIN
utils/matplotlib/__pycache__/utils.cpython-310.pyc Bestand weergeven


Laden…
Annuleren
Opslaan