QuizGenerator 0.4.2__py3-none-any.whl → 0.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. QuizGenerator/contentast.py +809 -117
  2. QuizGenerator/generate.py +219 -11
  3. QuizGenerator/misc.py +0 -556
  4. QuizGenerator/mixins.py +50 -29
  5. QuizGenerator/premade_questions/basic.py +3 -3
  6. QuizGenerator/premade_questions/cst334/languages.py +183 -175
  7. QuizGenerator/premade_questions/cst334/math_questions.py +81 -70
  8. QuizGenerator/premade_questions/cst334/memory_questions.py +262 -165
  9. QuizGenerator/premade_questions/cst334/persistence_questions.py +83 -60
  10. QuizGenerator/premade_questions/cst334/process.py +558 -79
  11. QuizGenerator/premade_questions/cst463/gradient_descent/gradient_calculation.py +39 -13
  12. QuizGenerator/premade_questions/cst463/gradient_descent/gradient_descent_questions.py +61 -36
  13. QuizGenerator/premade_questions/cst463/gradient_descent/loss_calculations.py +29 -10
  14. QuizGenerator/premade_questions/cst463/gradient_descent/misc.py +2 -2
  15. QuizGenerator/premade_questions/cst463/math_and_data/matrix_questions.py +60 -43
  16. QuizGenerator/premade_questions/cst463/math_and_data/vector_questions.py +173 -326
  17. QuizGenerator/premade_questions/cst463/models/attention.py +29 -14
  18. QuizGenerator/premade_questions/cst463/models/cnns.py +32 -20
  19. QuizGenerator/premade_questions/cst463/models/rnns.py +28 -15
  20. QuizGenerator/premade_questions/cst463/models/text.py +29 -15
  21. QuizGenerator/premade_questions/cst463/models/weight_counting.py +38 -30
  22. QuizGenerator/premade_questions/cst463/neural-network-basics/neural_network_questions.py +91 -111
  23. QuizGenerator/premade_questions/cst463/tensorflow-intro/tensorflow_questions.py +128 -55
  24. QuizGenerator/question.py +114 -20
  25. QuizGenerator/quiz.py +81 -24
  26. QuizGenerator/regenerate.py +98 -29
  27. {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/METADATA +1 -1
  28. {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/RECORD +31 -33
  29. QuizGenerator/README.md +0 -5
  30. QuizGenerator/logging.yaml +0 -55
  31. {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/WHEEL +0 -0
  32. {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/entry_points.txt +0 -0
  33. {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,55 +0,0 @@
1
- version: 1
2
- disable_existing_loggers: false
3
-
4
- formatters:
5
- standard:
6
- format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
7
- datefmt: '%Y-%m-%d %H:%M:%S'
8
-
9
- detailed:
10
- format: '%(asctime)s - %(name)s - %(levelname)s - %(module)s - %(funcName)s:%(lineno)d - %(message)s'
11
- datefmt: '%Y-%m-%d %H:%M:%S'
12
-
13
- simple:
14
- format: '%(levelname)s - %(message)s'
15
-
16
- handlers:
17
- console:
18
- class: logging.StreamHandler
19
- level: INFO
20
- formatter: standard
21
- stream: ext://sys.stdout
22
-
23
- file:
24
- class: logging.FileHandler
25
- level: INFO
26
- formatter: detailed
27
- filename: ${LOG_FILE:-teachingtools.log}
28
- mode: a
29
-
30
- error_file:
31
- class: logging.FileHandler
32
- level: ERROR
33
- formatter: detailed
34
- filename: ${ERROR_LOG_FILE:-teachingtools_errors.log}
35
- mode: a
36
-
37
- loggers:
38
- QuizGenerator:
39
- level: INFO
40
- handlers: [console, file]
41
- propagate: false
42
-
43
- lms_interface:
44
- level: INFO
45
- handlers: [console, file]
46
- propagate: false
47
-
48
- canvasapi:
49
- level: WARNING
50
- handlers: [console]
51
- propagate: false
52
-
53
- root:
54
- level: INFO
55
- handlers: [console, file, error_file]