forked from ludwig-ai/ludwig-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code_doc_autogen.py
560 lines (498 loc) · 19.8 KB
/
code_doc_autogen.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
# -*- coding: utf-8 -*-
# Copyright (c) 2019 Uber Technologies, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""
Documentation Generator
This code is a modified and adapted version of Keras' code_doc_autogen.py
https://github.com/keras-team/keras-autodoc/blob/master/keras_autodoc/autogen.py
"""
import inspect
import os
import re
import sys
from ludwig.api import kfold_cross_validate
from ludwig.hyperopt.run import hyperopt
from ludwig.visualize import (
binary_threshold_vs_metric,
calibration_1_vs_all,
calibration_multiclass,
compare_classifiers_multiclass_multimetric,
compare_classifiers_performance_changing_k,
compare_classifiers_performance_from_pred,
compare_classifiers_performance_from_prob,
compare_classifiers_performance_subset,
compare_classifiers_predictions,
compare_performance,
confidence_thresholding,
confidence_thresholding_2thresholds_2d,
confidence_thresholding_2thresholds_3d,
confidence_thresholding_data_vs_acc,
confidence_thresholding_data_vs_acc_subset,
confusion_matrix,
frequency_vs_f1,
hyperopt_hiplot,
hyperopt_report,
learning_curves,
roc_curves,
roc_curves_from_test_statistics,
)
sys.path.append("../")
import ludwig # noqa: E402
from ludwig.api import LudwigModel # noqa: E402
EXCLUDE = {}
# For each class to document, it is possible to:
# 1) Document only the class: [classA, classB, ...]
# 2) Document all its methods: [classA, (classB, "*")]
# 3) Choose which methods to document (methods listed as strings):
# [classA, (classB, ["method1", "method2", ...]), ...]
# 4) Choose which methods to document (methods listed as qualified names):
# [classA, (classB, [module.classB.method1, module.classB.method2, ...]), ...]
# PAGES = [
# {
# 'page': 'models/sequential.md',
# 'methods': [
# models.Sequential.compile,
# models.Sequential.fit,
# models.Sequential.evaluate,
# models.Sequential.predict,
# models.Sequential.train_on_batch,
# models.Sequential.test_on_batch,
# models.Sequential.predict_on_batch,
# models.Sequential.fit_generator,
# models.Sequential.evaluate_generator,
# models.Sequential.predict_generator,
# models.Sequential.get_layer,
# ],
# 'functions': [
# preprocessing.sequence.pad_sequences,
# preprocessing.sequence.skipgrams,
# preprocessing.sequence.make_sampling_table,
# ],
# 'classes': [
# preprocessing.sequence.TimeseriesGenerator,
# ],
# 'all_module_functions': [initializers],
# 'all_module_classes': [initializers]
# }
# ]
PAGES = [
{
"page": "user_guide/api/LudwigModel.md",
"classes": [(LudwigModel, "*")],
"functions": [kfold_cross_validate, hyperopt],
},
{
"page": "user_guide/api/visualization.md",
"functions": [
learning_curves,
compare_performance,
compare_classifiers_performance_from_prob,
compare_classifiers_performance_from_pred,
compare_classifiers_performance_subset,
compare_classifiers_performance_changing_k,
compare_classifiers_multiclass_multimetric,
compare_classifiers_predictions,
confidence_thresholding_2thresholds_2d,
confidence_thresholding_2thresholds_3d,
confidence_thresholding,
confidence_thresholding_data_vs_acc,
confidence_thresholding_data_vs_acc_subset,
binary_threshold_vs_metric,
roc_curves,
roc_curves_from_test_statistics,
calibration_1_vs_all,
calibration_multiclass,
confusion_matrix,
frequency_vs_f1,
hyperopt_report,
hyperopt_hiplot,
],
}
# {
# 'page': 'api/sequential_encoders.md',
# 'classes': [
# (sequence_encoders.EmbedEncoder, "*"),
# (sequence_encoders.ParallelCNN, "*"),
# (sequence_encoders.StackedCNN, "*"),
# (sequence_encoders.StackedParallelCNN, "*"),
# (sequence_encoders.RNN, "*"),
# (sequence_encoders.CNNRNN, "*"),
# ]
# }
]
ROOT = "http://ludwig.ai/"
OUTPUT_DIR = "docs"
def get_function_signature(_function, _method=True):
wrapped = getattr(_function, "_original_function", None)
if wrapped is None:
_signature = inspect.getfullargspec(_function)
else:
_signature = inspect.getfullargspec(wrapped)
defaults = _signature.defaults
if _method and _signature.args and _signature.args[0] == "self":
args = _signature.args[1:]
else:
args = _signature.args
if defaults:
kwargs = zip(args[-len(defaults) :], defaults)
args = args[: -len(defaults)]
else:
kwargs = []
st = "%s.%s(\n" % (clean_module_name(_function.__module__), _function.__name__)
for a in args:
st += " {},\n".format(str(a))
for a, v in kwargs:
if isinstance(v, str):
v = "'" + v + "'"
st += " {}={},\n".format(str(a), str(v))
if kwargs or args:
_signature = st[:-2] + "\n)"
else:
_signature = st + ")"
return post_process_signature(_signature)
def get_class_signature(_cls):
try:
class_signature = get_function_signature(_cls.__init__)
class_signature = class_signature.replace("__init__", _cls.__name__)
except (TypeError, AttributeError):
# in case the class inherits from object and does not
# define __init__
class_signature = "{clean_module_name}.{cls_name}()".format(
clean_module_name=clean_module_name(_cls.__module__), cls_name=_cls.__name__
)
return post_process_signature(class_signature)
def post_process_signature(_signature):
parts = re.split(r"\.(?!\d)", _signature)
if len(parts) >= 4:
if parts[1] == "api":
_signature = "ludwig." + ".".join(parts[2:])
return _signature
def clean_module_name(name):
# if name.startswith('ludwig.api'):
# name = name.replace('ludwig.api', 'ludwig')
return name
def class_to_docs_link(_cls):
module_name = clean_module_name(_cls.__module__)
module_name = module_name[6:]
link = ROOT + module_name.replace(".", "/") + "#" + _cls.__name__.lower()
return link
def class_to_source_link(_cls):
module_name = clean_module_name(_cls.__module__)
_path = module_name.replace(".", "/")
_path += ".py"
link = "https://github.com/ludwig-ai/" "ludwig/blob/master/" + _path
return "[[source]](" + link + ")"
def code_snippet(snippet):
result = "```python\n"
result += snippet + "\n"
result += "```\n"
return result
def count_leading_spaces(s):
ws = re.search(r"\S", s)
if ws:
return ws.start()
else:
return 0
def process_list_block(_docstring, starting_point, section_end, leading_spaces, marker):
ending_point = _docstring.find("\n\n", starting_point)
block = _docstring[
starting_point : (None if ending_point == -1 else ending_point - 1)
]
# Place marker for later reinjection.
docstring_slice = _docstring[
starting_point : None if section_end == -1 else section_end
].replace(block, marker)
_docstring = (
_docstring[:starting_point] + docstring_slice + _docstring[section_end:]
)
lines = block.split("\n")
# Remove the computed number of leading white spaces from each line.
lines = [re.sub("^" + " " * leading_spaces, "", line) for line in lines]
# Usually lines have at least 4 additional leading spaces.
# These have to be removed, but first the list roots have to be detected.
top_level_regex = r"^ ([^\s\\\(]+):(.*)"
top_level_replacement = r"- __\1__:\2"
lines = [re.sub(top_level_regex, top_level_replacement, line) for line in lines]
# All the other lines get simply the 4 leading space (if present) removed
lines = [re.sub(r"^ ", "", line) for line in lines]
# Fix text lines after lists
indent = 0
text_block = False
for i in range(len(lines)):
line = lines[i]
spaces = re.search(r"\S", line)
if spaces:
# If it is a list element
if line[spaces.start()] == "-":
indent = spaces.start() + 1
if text_block:
text_block = False
lines[i] = "\n" + line
elif spaces.start() < indent:
text_block = True
indent = spaces.start()
lines[i] = "\n" + line
else:
text_block = False
indent = 0
# deal with rst
for i in range(len(lines)):
line = lines[i]
if line.startswith(":param "):
line = line[7:]
pos_second_colon = line.find(":")
param_name = line[:pos_second_colon]
pos_open_bracket = line.find("(")
pos_close_bracket = line.find(")")
inside_brackets = line[pos_open_bracket + 1 : pos_close_bracket]
description = line[pos_close_bracket + 1 :]
lines[i] = "- __{}__ ({}):{}".format(
param_name, inside_brackets, description
)
elif line.startswith(":return:"):
line = line[8:]
inside_brackets = ""
pos_open_bracket = line.find("(")
pos_close_bracket = line.rfind(")")
if pos_open_bracket and pos_close_bracket:
inside_brackets = " ({})".format(
line[pos_open_bracket + 1 : pos_close_bracket]
)
line = line[pos_close_bracket + 1 :]
lines[i] = "- __return__{}:{}".format(inside_brackets, line)
block = "\n".join(lines)
return _docstring, block
def process_docstring(_docstring):
# First, extract code blocks and process them.
code_blocks = []
if "```" in _docstring:
tmp = _docstring[:]
while "```" in tmp:
tmp = tmp[tmp.find("```") :]
index = tmp[3:].find("```") + 6
snippet = tmp[:index]
# Place marker in docstring for later reinjection.
_docstring = _docstring.replace(
snippet, "$CODE_BLOCK_%d" % len(code_blocks)
)
snippet_lines = snippet.split("\n")
# Remove leading spaces.
num_leading_spaces = snippet_lines[-1].find("`")
snippet_lines = [snippet_lines[0]] + [
line[num_leading_spaces:] for line in snippet_lines[1:]
]
# Most code snippets have 3 or 4 more leading spaces
# on inner lines, but not all. Remove them.
inner_lines = snippet_lines[1:-1]
leading_spaces = None
for line in inner_lines:
if not line or line[0] == "\n":
continue
spaces = count_leading_spaces(line)
if leading_spaces is None:
leading_spaces = spaces
if spaces < leading_spaces:
leading_spaces = spaces
if leading_spaces:
snippet_lines = (
[snippet_lines[0]]
+ [line[leading_spaces:] for line in snippet_lines[1:-1]]
+ [snippet_lines[-1]]
)
snippet = "\n".join(snippet_lines)
code_blocks.append(snippet)
tmp = tmp[index:]
# Format docstring lists.
section_regex = r"\n( +)# (.*)\n"
section_idx = re.search(section_regex, _docstring)
shift = 0
sections = {}
while section_idx and section_idx.group(2):
anchor = section_idx.group(2)
leading_spaces = len(section_idx.group(1))
shift += section_idx.end()
next_section_idx = re.search(section_regex, _docstring[shift:])
if next_section_idx is None:
section_end = -1
else:
section_end = shift + next_section_idx.start()
marker = "$" + anchor.replace(" ", "_") + "$"
_docstring, content = process_list_block(
_docstring, shift, section_end, leading_spaces, marker
)
sections[marker] = content
# `docstring` has changed, so we can't use `next_section_idx` anymore
# we have to recompute it
section_idx = re.search(section_regex, _docstring[shift:])
# Format docstring section titles.
_docstring = re.sub(r"\n(\s+)# (.*)\n", r"\n\1__\2__\n\n", _docstring)
# Strip all remaining leading spaces.
# generator function to resolve deepsource.io major issue
def strip_leading_spaces(these_lines):
for line in these_lines:
yield line.lstrip(" ")
lines = _docstring.split("\n")
_docstring = "\n".join(strip_leading_spaces(lines))
# Reinject list blocks.
for marker, content in sections.items():
_docstring = _docstring.replace(marker, content)
# Reinject code blocks.
for i, code_block in enumerate(code_blocks):
_docstring = _docstring.replace("$CODE_BLOCK_%d" % i, code_block)
return _docstring
def read_file(_path):
with open(_path) as _f:
return _f.read()
def collect_class_methods(_cls, _methods):
if isinstance(_methods, (list, tuple)):
return [getattr(_cls, m) if isinstance(m, str) else m for m in _methods]
_methods = []
for _, _method in inspect.getmembers(_cls, predicate=inspect.isroutine):
if _method.__name__[0] == "_" or _method.__name__ in EXCLUDE:
continue
_methods.append(_method)
return _methods
def render_function(_function, _method=True):
_subblocks = []
_signature = get_function_signature(_function, _method=_method)
if _method:
_signature = _signature.replace(
clean_module_name(_function.__module__) + ".", ""
)
_subblocks.append("## " + _function.__name__ + "\n")
_subblocks.append(code_snippet(_signature))
_docstring = _function.__doc__
if _docstring:
_subblocks.append(process_docstring(_docstring))
return "\n\n".join(_subblocks)
def read_page_data(_page_data, type):
assert type in ["classes", "functions", "methods"]
data = _page_data.get(type, [])
for module in _page_data.get("all_module_{}".format(type), []):
module_data = []
for name in dir(module):
if name[0] == "_" or name in EXCLUDE:
continue
module_member = getattr(module, name)
if (
inspect.isclass(module_member)
and type == "classes"
or inspect.isfunction(module_member)
and type == "functions"
):
instance = module_member
if module.__name__ in instance.__module__:
if instance not in module_data:
module_data.append(instance)
module_data.sort(key=lambda x: id(x))
data += module_data
return data
if __name__ == "__main__":
print("Cleaning up existing {} directory.".format(OUTPUT_DIR))
for page_data in PAGES:
file_path = os.path.join(OUTPUT_DIR, page_data["page"])
if os.path.exists(file_path):
os.remove(file_path)
# if os.path.exists(OUTPUT_DIR):
# shutil.rmtree(OUTPUT_DIR)
# print('Populating {} directory with templates.'.format(OUTPUT_DIR))
# for subdir, dirs, fnames in os.walk('templates'):
# for fname in fnames:
# new_subdir = subdir.replace('templates', OUTPUT_DIR)
# if not os.path.exists(new_subdir):
# os.makedirs(new_subdir)
# if fname[-3:] == '.md':
# fpath = os.path.join(subdir, fname)
# new_fpath = fpath.replace('templates', OUTPUT_DIR)
# shutil.copy(fpath, new_fpath)
# readme = read_file('../README.md.md')
# index = read_file('templates/index.md')
# index = index.replace('{{autogenerated}}', readme[readme.find('##'):])
# with open(os.path.join(OUTPUT_DIR, 'index.md'), 'w') as f:
# f.write(index)
print("Generating docs for Ludwig %s." % ludwig.__version__)
for page_data in PAGES:
classes = []
functions = []
methods = []
if "classes" in page_data.keys():
classes = read_page_data(page_data, "classes")
elif "functions" in page_data.keys():
functions = read_page_data(page_data, "functions")
else:
raise TypeError("Invalid type specified in page_data")
blocks = []
for element in classes:
if not isinstance(element, (list, tuple)):
element = (element, None)
cls = element[0]
subblocks = []
signature = get_class_signature(cls)
if element[1]:
subblocks.append(
"# " + cls.__name__ + " class " + class_to_source_link(cls) + "\n"
)
else:
subblocks.append("## " + cls.__name__ + "\n")
subblocks.append(code_snippet(signature))
docstring = cls.__doc__
if docstring:
subblocks.append(process_docstring(docstring))
methods = collect_class_methods(cls, element[1])
if methods:
subblocks.append("\n---")
subblocks.append("# " + cls.__name__ + " methods\n")
# generator function to resolve deepsource.io major issue
def generate_render_functions(_methods):
for m in _methods:
yield render_function(m, _method=True)
subblocks.append("\n\n---\n".join(generate_render_functions(methods)))
blocks.append("\n".join(subblocks))
methods = read_page_data(page_data, "methods")
for method in methods:
blocks.append(render_function(method, _method=True))
functions = read_page_data(page_data, "functions")
if functions:
blocks.append("# Module functions\n")
for function in functions:
blocks.append(render_function(function, _method=False))
if not blocks:
raise RuntimeError("Found no content for page " + page_data["page"])
mkdown = (
"<!-- markdownlint-disable -->\n"
+ "<!-- DO NOT EDIT DIRECTLY: "
+ "Automatically generated by code_doc_autogen.py. -->\n"
+ "\n---\n\n".join(blocks)
)
# save module page.
# Either insert content into existing page,
# or create page otherwise
page_name = page_data["page"]
path = os.path.join(OUTPUT_DIR, page_name)
if os.path.exists(path):
template = read_file(path)
assert "{{autogenerated}}" in template, (
"Template found for " + path + " but missing {{autogenerated}}" " tag."
)
mkdown = template.replace("{{autogenerated}}", mkdown)
print("...inserting autogenerated content into template:", path)
else:
print("...creating new page with autogenerated content:", path)
subdir = os.path.dirname(path)
if not os.path.exists(subdir):
os.makedirs(subdir)
with open(path, "w") as f:
f.write(mkdown)
# shutil.copyfile('../CONTRIBUTING.md', 'os.path.join(OUTPUT_DIR, 'contributing.md'))