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.
- QuizGenerator/contentast.py +809 -117
- QuizGenerator/generate.py +219 -11
- QuizGenerator/misc.py +0 -556
- QuizGenerator/mixins.py +50 -29
- QuizGenerator/premade_questions/basic.py +3 -3
- QuizGenerator/premade_questions/cst334/languages.py +183 -175
- QuizGenerator/premade_questions/cst334/math_questions.py +81 -70
- QuizGenerator/premade_questions/cst334/memory_questions.py +262 -165
- QuizGenerator/premade_questions/cst334/persistence_questions.py +83 -60
- QuizGenerator/premade_questions/cst334/process.py +558 -79
- QuizGenerator/premade_questions/cst463/gradient_descent/gradient_calculation.py +39 -13
- QuizGenerator/premade_questions/cst463/gradient_descent/gradient_descent_questions.py +61 -36
- QuizGenerator/premade_questions/cst463/gradient_descent/loss_calculations.py +29 -10
- QuizGenerator/premade_questions/cst463/gradient_descent/misc.py +2 -2
- QuizGenerator/premade_questions/cst463/math_and_data/matrix_questions.py +60 -43
- QuizGenerator/premade_questions/cst463/math_and_data/vector_questions.py +173 -326
- QuizGenerator/premade_questions/cst463/models/attention.py +29 -14
- QuizGenerator/premade_questions/cst463/models/cnns.py +32 -20
- QuizGenerator/premade_questions/cst463/models/rnns.py +28 -15
- QuizGenerator/premade_questions/cst463/models/text.py +29 -15
- QuizGenerator/premade_questions/cst463/models/weight_counting.py +38 -30
- QuizGenerator/premade_questions/cst463/neural-network-basics/neural_network_questions.py +91 -111
- QuizGenerator/premade_questions/cst463/tensorflow-intro/tensorflow_questions.py +128 -55
- QuizGenerator/question.py +114 -20
- QuizGenerator/quiz.py +81 -24
- QuizGenerator/regenerate.py +98 -29
- {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/METADATA +1 -1
- {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/RECORD +31 -33
- QuizGenerator/README.md +0 -5
- QuizGenerator/logging.yaml +0 -55
- {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/WHEEL +0 -0
- {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/entry_points.txt +0 -0
- {quizgenerator-0.4.2.dist-info → quizgenerator-0.6.0.dist-info}/licenses/LICENSE +0 -0
QuizGenerator/logging.yaml
DELETED
|
@@ -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]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|