File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ spellchecker: aspell
2
2
matrix :
3
3
- name : python
4
4
sources :
5
- - beginner_source/*.py
6
- - intermediate_source/*.py
5
+ # - beginner_source/*.py
6
+ # - intermediate_source/*.py
7
7
- advanced_source/*.py
8
- - recipes_source/*/*.py
8
+ # - recipes_source/*/*.py
9
9
dictionary :
10
10
wordlists :
11
11
- en-wordlist.txt
@@ -45,6 +45,9 @@ matrix:
45
45
- open : ' \.\. (code-block|math)::.*$\n*'
46
46
content : ' (?P<first>(^(?P<indent>[ ]+).*$\n))(?P<other>(^([ \t]+.*|[ \t]*)$\n)*)'
47
47
close : ' (^(?![ \t]+.*$))'
48
+ # Ignore references like "[1] Author: Title"
49
+ - open : ' \[\d\]'
50
+ close : ' \n'
48
51
- pyspelling.filters.markdown :
49
52
- pyspelling.filters.html :
50
53
ignores :
Original file line number Diff line number Diff line change 72
72
# augmentation of unlabeled data
73
73
# - ``get_net_builder`` to create a model, here we use pretrained ViT
74
74
# - ``get_algorithm`` to create the semi-supervised learning algorithm,
75
- # here we use FreeMatch and SoftMatch
75
+ # here we use `` FreeMatch`` and `` SoftMatch``
76
76
# - ``get_config``: to get default configuration of the algorithm
77
77
# - ``Trainer``: a Trainer class for training and evaluating the
78
78
# algorithm on dataset
You can’t perform that action at this time.
0 commit comments