-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiff_wav_jupyter.html
2913 lines (2386 loc) · 242 KB
/
diff_wav_jupyter.html
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
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0068)http://cluster-proxy.sh.sensetime.com:12723/notebooks/diff_wav.ipynb -->
<html lang="zh-cn"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>diff_wav - Jupyter Notebook</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="./diff_wav_jupyter_files/jquery-ui.min.css" type="text/css">
<link rel="stylesheet" href="./diff_wav_jupyter_files/jquery.typeahead.min.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="./diff_wav_jupyter_files/MathJax.js.下载" charset="utf-8"></script>
<script type="text/javascript">
// MathJax disabled, set as null to distinguish from *missing* MathJax,
// where it will be undefined, and should prompt a dialog later.
window.mathjax_url = "/static/components/MathJax/MathJax.js";
</script>
<link rel="stylesheet" href="./diff_wav_jupyter_files/bootstrap-tour.min.css" type="text/css">
<link rel="stylesheet" href="./diff_wav_jupyter_files/codemirror.css">
<link rel="stylesheet" href="./diff_wav_jupyter_files/style.min.css" type="text/css">
<link rel="stylesheet" href="./diff_wav_jupyter_files/override.css" type="text/css">
<link rel="stylesheet" href="http://cluster-proxy.sh.sensetime.com:12723/notebooks/diff_wav.ipynb" id="kernel-css" type="text/css">
<link rel="stylesheet" href="./diff_wav_jupyter_files/custom.css" type="text/css">
<script src="./diff_wav_jupyter_files/promise.min.js.下载" type="text/javascript" charset="utf-8"></script>
<script src="./diff_wav_jupyter_files/react.production.min.js.下载" type="text/javascript"></script>
<script src="./diff_wav_jupyter_files/react-dom.production.min.js.下载" type="text/javascript"></script>
<script src="./diff_wav_jupyter_files/index.js.下载" type="text/javascript"></script>
<script src="./diff_wav_jupyter_files/require.js.下载" type="text/javascript" charset="utf-8"></script>
<script>
require.config({
urlArgs: "v=20230320114048",
baseUrl: '/static/',
paths: {
'auth/js/main': 'auth/js/main.min',
custom : '/custom',
nbextensions : '/nbextensions',
kernelspecs : '/kernelspecs',
underscore : 'components/underscore/underscore-min',
backbone : 'components/backbone/backbone-min',
jed: 'components/jed/jed',
jquery: 'components/jquery/jquery.min',
json: 'components/requirejs-plugins/src/json',
text: 'components/requirejs-text/text',
bootstrap: 'components/bootstrap/dist/js/bootstrap.min',
bootstraptour: 'components/bootstrap-tour/build/js/bootstrap-tour.min',
'jquery-ui': 'components/jquery-ui/jquery-ui.min',
moment: 'components/moment/min/moment-with-locales',
codemirror: 'components/codemirror',
termjs: 'components/xterm.js/xterm',
typeahead: 'components/jquery-typeahead/dist/jquery.typeahead.min',
},
map: { // for backward compatibility
"*": {
"jqueryui": "jquery-ui",
}
},
shim: {
typeahead: {
deps: ["jquery"],
exports: "typeahead"
},
underscore: {
exports: '_'
},
backbone: {
deps: ["underscore", "jquery"],
exports: "Backbone"
},
bootstrap: {
deps: ["jquery"],
exports: "bootstrap"
},
bootstraptour: {
deps: ["bootstrap"],
exports: "Tour"
},
"jquery-ui": {
deps: ["jquery"],
exports: "$"
}
},
waitSeconds: 30,
});
require.config({
map: {
'*':{
'contents': 'services/contents',
}
}
});
// error-catching custom.js shim.
define("custom", function (require, exports, module) {
try {
var custom = require('custom/custom');
console.debug('loaded custom.js');
return custom;
} catch (e) {
console.error("error loading custom.js", e);
return {};
}
})
document.nbjs_translations = {"domain": "nbjs", "locale_data": {"nbjs": {"": {"domain": "nbjs"}, "Manually edit the JSON below to manipulate the metadata for this cell.": ["\u624b\u52a8\u7f16\u8f91\u4e0b\u9762\u7684JSON\u4ee3\u7801\u6765\u4fee\u6539\u5757\u5143\u6570\u636e."], "Manually edit the JSON below to manipulate the metadata for this notebook.": ["\u624b\u52a8\u7f16\u8f91\u4e0b\u9762\u7684JSON\u4ee3\u7801\u6765\u4fee\u6539\u754c\u9762\u5143\u6570\u636e."], " We recommend putting custom metadata attributes in an appropriately named substructure, so they don't conflict with those of others.": ["\u6211\u4eec\u5efa\u8bae\u5c06\u81ea\u5b9a\u4e49\u7684\u5143\u6570\u636e\u5c5e\u6027\u653e\u5165\u9002\u5f53\u7684\u5b50\u7ed3\u6784\u4e2d\uff0c\u8fd9\u6837\u5c31\u4e0d\u4f1a\u4e0e\u5176\u4ed6\u7684\u5b50\u7ed3\u6784\u53d1\u751f\u51b2\u7a81."], "Edit the metadata": ["\u7f16\u8f91\u5143\u6570\u636e"], "Edit Notebook Metadata": ["\u7f16\u8f91\u754c\u9762\u5143\u6570\u636e"], "Edit Cell Metadata": ["\u7f16\u8f91\u5757\u5143\u6570\u636e"], "Cancel": ["\u53d6\u6d88"], "Edit": ["\u7f16\u8f91"], "OK": ["\u786e\u5b9a"], "Apply": ["\u5e94\u7528"], "WARNING: Could not save invalid JSON.": ["\u8b66\u544a: \u4e0d\u80fd\u4fdd\u5b58\u65e0\u6548\u7684JSON."], "There are no attachments for this cell.": ["\u8fd9\u4e2a\u5757\u6ca1\u6709\u9644\u4ef6."], "Current cell attachments": ["\u5f53\u524d\u5757\u9644\u4ef6"], "Attachments": ["\u9644\u4ef6"], "Restore": ["\u91cd\u65b0\u4fdd\u5b58"], "Delete": ["\u5220\u9664"], "Edit attachments": ["\u7f16\u8f91\u9644\u4ef6"], "Edit Notebook Attachments": ["\u7f16\u8f91\u4ee3\u7801\u9644\u4ef6"], "Edit Cell Attachments": ["\u7f16\u8f91\u5757\u9644\u4ef6"], "Select a file to insert.": ["\u9009\u62e9\u6587\u4ef6\u63d2\u5165"], "Select a file": ["\u9009\u62e9\u6587\u4ef6"], "You are using Jupyter notebook.": ["\u4f60\u6b63\u5728\u8fd0\u884cnotebook."], "The version of the notebook server is: ": ["\u8be5notebook \u670d\u52a1\u7684\u7248\u672c\u662f\uff1a"], "The server is running on this version of Python:": ["\u8be5\u670d\u52a1\u8fd0\u884c\u4e2d\u4f7f\u7528\u7684python\u7248\u672c\u4e3a:"], "Waiting for kernel to be available...": ["\u7b49\u5f85\u670d\u52a1\u53ef\u7528..."], "Server Information:": ["\u670d\u52a1\u4fe1\u606f:"], "Current Kernel Information:": ["\u5f53\u524d\u670d\u52a1\u4fe1\u606f:"], "Could not access sys_info variable for version information.": ["\u65e0\u6cd5\u4e3a\u7248\u672c\u4fe1\u606f\u8bbf\u95eesysinfo\u53d8\u91cf."], "Cannot find sys_info!": ["\u627e\u4e0d\u5230sys_info!"], "About Jupyter Notebook": ["\u5173\u4e8e Jupyter Notebook"], "unable to contact kernel": ["\u4e0d\u80fd\u8fde\u63a5\u5230\u670d\u52a1"], "toggle rtl layout": ["\u5207\u6362trl\u5e03\u5c40"], "Toggle the screen directionality between left-to-right and right-to-left": ["\u5207\u6362\u5de6\u53f3\u81f3\u53f3\u81f3\u5de6\u4e4b\u95f4\u7684\u5c4f\u5e55\u65b9\u5411"], "edit command mode keyboard shortcuts": ["\u7f16\u8f91\u547d\u4ee4\u6a21\u5f0f\u5feb\u6377\u952e"], "Open a dialog to edit the command mode keyboard shortcuts": ["\u6253\u5f00\u7a97\u53e3\u6765\u7f16\u8f91\u5feb\u6377\u952e"], "restart kernel": ["\u91cd\u542f\u670d\u52a1"], "restart the kernel (no confirmation dialog)": ["\u91cd\u542f\u670d\u52a1(\u6ca1\u6709\u786e\u8ba4\u7a97\u53e3)"], "confirm restart kernel": ["\u786e\u5b9a\u91cd\u542f\u670d\u52a1"], "restart the kernel (with dialog)": ["\u91cd\u542f\u670d\u52a1(\u5e26\u7a97\u53e3)"], "restart kernel and run all cells": ["\u91cd\u542f\u670d\u52a1\u5e76\u4e14\u8fd0\u884c\u6240\u6709\u4ee3\u7801\u5757"], "restart the kernel, then re-run the whole notebook (no confirmation dialog)": ["\u91cd\u542f\u670d\u52a1, \u7136\u540e\u91cd\u65b0\u8fd0\u884c\u6574\u4e2a\u4ee3\u7801(\u4e0d\u542b\u786e\u8ba4\u7a97\u53e3)"], "confirm restart kernel and run all cells": ["\u786e\u8ba4\u91cd\u542f\u670d\u52a1\u5e76\u4e14\u8fd0\u884c\u6240\u6709\u4ee3\u7801\u5757"], "restart the kernel, then re-run the whole notebook (with dialog)": ["\u91cd\u542f\u670d\u52a1, \u7136\u540e\u91cd\u65b0\u8fd0\u884c\u6574\u4e2a\u4ee3\u7801(\u542b\u7a97\u53e3)"], "restart kernel and clear output": ["\u91cd\u542f\u670d\u52a1\u5e76\u4e14\u6e05\u7a7a\u8f93\u5165"], "restart the kernel and clear all output (no confirmation dialog)": ["\u91cd\u542f\u670d\u52a1\u5e76\u4e14\u6e05\u7a7a\u6240\u6709\u8f93\u51fa(\u4e0d\u542b\u786e\u8ba4\u7a97\u53e3)"], "confirm restart kernel and clear output": ["\u786e\u8ba4\u91cd\u542f\u670d\u52a1\u5e76\u4e14\u6e05\u7a7a\u8f93\u51fa"], "restart the kernel and clear all output (with dialog)": ["\u91cd\u542f\u670d\u52a1\u5e76\u4e14\u6e05\u7a7a\u6240\u6709\u8f93\u51fa(\u542b\u7a97\u53e3)"], "interrupt the kernel": ["\u4e2d\u65ad\u670d\u52a1"], "run cell and select next": ["\u8fd0\u884c\u4ee3\u7801\u5757\u5e76\u4e14\u9009\u62e9\u4e0b\u4e00\u4e2a\u4ee3\u7801\u5757"], "run cell, select below": ["\u8fd0\u884c\u4ee3\u7801\u5757, \u9009\u62e9\u4e0b\u9762\u7684\u4ee3\u7801\u5757"], "run selected cells": ["\u8fd0\u884c\u9009\u4e2d\u7684\u4ee3\u7801\u5757"], "run cell and insert below": ["\u8fd0\u884c\u4ee3\u7801\u5757\u5e76\u4e14\u63d2\u5165\u4e0b\u9762"], "run all cells": ["\u8fd0\u884c\u6240\u6709\u7684\u4ee3\u7801\u5757"], "run all cells above": ["\u8fd0\u884c\u4e0a\u9762\u6240\u6709\u7684\u4ee3\u7801\u5757"], "run all cells below": ["\u8fd0\u884c\u4e0b\u9762\u6240\u6709\u7684\u4ee3\u7801\u5757"], "enter command mode": ["\u8fdb\u5165\u547d\u4ee4\u884c\u6a21\u5f0f"], "insert image": ["\u63d2\u5165\u56fe\u7247"], "cut cell attachments": ["\u526a\u5207\u4ee3\u7801\u5757"], "copy cell attachments": ["\u590d\u5236\u4ee3\u7801\u5757"], "paste cell attachments": ["\u7c98\u8d34\u4ee3\u7801\u5757"], "split cell at cursor": ["\u5728\u9f20\u6807\u5904\u5206\u5272\u4ee3\u7801\u5757"], "enter edit mode": ["\u8fdb\u5165\u7f16\u8f91\u6a21\u5f0f"], "select previous cell": ["\u9009\u62e9\u4e0a\u4e00\u4e2a\u4ee3\u7801\u5757"], "select cell above": ["\u9009\u62e9\u4e0a\u9762\u7684\u4ee3\u7801\u5757"], "select next cell": ["\u9009\u62e9\u4e0b\u4e00\u4e2a\u4ee3\u7801\u5757"], "select cell below": ["\u9009\u62e9\u4e0b\u9762\u7684\u4ee3\u7801\u5757"], "extend selection above": ["\u6269\u5c55\u4e0a\u9762\u7684\u4ee3\u7801\u5757"], "extend selected cells above": ["\u6269\u5c55\u4e0a\u9762\u9009\u62e9\u7684\u4ee3\u7801\u5757"], "extend selection below": ["\u6269\u5c55\u4e0b\u9762\u7684\u4ee3\u7801\u5757"], "extend selected cells below": ["\u6269\u5c55\u4e0b\u9762\u9009\u62e9\u7684\u4ee3\u7801\u5757"], "cut selected cells": ["\u526a\u5207\u9009\u62e9\u7684\u4ee3\u7801\u5757"], "copy selected cells": ["\u590d\u5236\u9009\u62e9\u7684\u4ee3\u7801\u5757"], "paste cells above": ["\u7c98\u8d34\u5230\u4e0a\u9762"], "paste cells below": ["\u7c98\u8d34\u5230\u4e0b\u9762"], "insert cell above": ["\u5728\u4e0a\u9762\u63d2\u5165\u4ee3\u7801\u5757"], "insert cell below": ["\u5728\u4e0b\u9762\u63d2\u5165\u4ee3\u7801\u5757"], "change cell to code": ["\u628a\u4ee3\u7801\u5757\u53d8\u6210\u4ee3\u7801"], "change cell to markdown": ["\u628a\u4ee3\u7801\u5757\u53d8\u6210\u6807\u7b7e"], "change cell to raw": ["\u6e05\u9664\u4ee3\u7801\u5757\u683c\u5f0f"], "change cell to heading 1": ["\u628a\u4ee3\u7801\u5757\u53d8\u6210heading 1"], "change cell to heading 2": ["\u628a\u4ee3\u7801\u5757\u53d8\u6210heading 2"], "change cell to heading 3": ["\u628a\u4ee3\u7801\u5757\u53d8\u6210heading 3"], "change cell to heading 4": ["\u628a\u4ee3\u7801\u5757\u53d8\u6210heading 4"], "change cell to heading 5": ["\u628a\u4ee3\u7801\u5757\u53d8\u6210heading 5"], "change cell to heading 6": ["\u628a\u4ee3\u7801\u5757\u53d8\u6210heading 6"], "toggle cell output": ["\u5207\u6362\u5355\u5143\u8f93\u51fa"], "toggle output of selected cells": ["\u9009\u62e9\u5355\u5143\u683c\u7684\u8f93\u51fa"], "toggle cell scrolling": ["\u5207\u6362\u5355\u5143\u6eda\u52a8"], "toggle output scrolling of selected cells": ["\u5207\u6362\u9009\u5b9a\u5355\u5143\u7684\u8f93\u51fa\u6eda\u52a8"], "clear cell output": ["\u6e05\u7a7a\u6240\u6709\u5355\u5143\u683c\u8f93\u51fa"], "clear output of selected cells": ["\u6e05\u7a7a\u5df2\u9009\u62e9\u5355\u5143\u683c\u7684\u8f93\u51fa"], "move cells down": ["\u4e0b\u79fb"], "move selected cells down": ["\u4e0b\u79fb\u9009\u4e2d\u5355\u5143\u683c"], "move cells up": ["\u4e0a\u79fb"], "move selected cells up": ["\u4e0a\u79fb\u9009\u4e2d\u5355\u5143\u683c"], "toggle line numbers": ["\u5207\u6362\u884c\u53f7"], "show keyboard shortcuts": ["\u663e\u793a\u5feb\u6377\u952e"], "delete cells": ["\u5220\u9664\u5355\u5143\u683c"], "delete selected cells": ["\u5220\u9664\u9009\u4e2d\u5355\u5143\u683c"], "undo cell deletion": ["\u64a4\u9500\u5220\u9664"], "merge cell with previous cell": ["\u5408\u5e76\u4e0a\u4e00\u4e2a\u5355\u5143\u683c"], "merge cell above": ["\u5408\u5e76\u4e0a\u9762\u7684\u5355\u5143\u683c"], "merge cell with next cell": ["\u5408\u5e76\u4e0b\u4e00\u4e2a\u5355\u5143\u683c"], "merge cell below": ["\u5408\u5e76\u4e0b\u9762\u7684\u5355\u5143\u683c"], "merge selected cells": ["\u5408\u5e76\u9009\u4e2d\u7684\u5355\u5143\u683c"], "merge cells": ["\u5408\u5e76\u5355\u5143\u683c"], "merge selected cells, or current cell with cell below if only one cell is selected": ["\u5408\u5e76\u9009\u4e2d\u5355\u5143\u683c, \u5982\u679c\u53ea\u6709\u4e00\u4e2a\u5355\u5143\u683c\u88ab\u9009\u4e2d"], "show command pallette": ["\u663e\u793a\u547d\u4ee4\u914d\u7f6e"], "open the command palette": ["\u6253\u5f00\u547d\u4ee4\u914d\u7f6e"], "toggle all line numbers": ["\u5207\u6362\u6240\u6709\u884c\u53f7"], "toggles line numbers in all cells, and persist the setting": ["\u5728\u6240\u6709\u5355\u5143\u683c\u4e2d\u5207\u6362\u884c\u53f7\uff0c\u5e76\u4fdd\u6301\u8bbe\u7f6e"], "show all line numbers": ["\u663e\u793a\u884c\u53f7"], "show line numbers in all cells, and persist the setting": ["\u5728\u6240\u6709\u5355\u5143\u683c\u4e2d\u663e\u793a\u884c\u53f7\uff0c\u5e76\u4fdd\u6301\u8bbe\u7f6e"], "hide all line numbers": ["\u9690\u85cf\u884c\u53f7"], "hide line numbers in all cells, and persist the setting": ["\u9690\u85cf\u884c\u53f7\u5e76\u4fdd\u6301\u8bbe\u7f6e"], "toggle header": ["\u5207\u6362\u6807\u9898"], "switch between showing and hiding the header": ["\u663e\u793a\u548c\u9690\u85cf\u6807\u9898\u4e4b\u95f4\u7684\u5207\u6362"], "show the header": ["\u663e\u793a\u6807\u9898"], "hide the header": ["\u9690\u85cf\u6807\u9898"], "toggle toolbar": ["\u5207\u6362\u5de5\u5177\u680f"], "switch between showing and hiding the toolbar": ["\u9009\u62e9\u663e\u793a/\u9690\u85cf\u5de5\u5177\u680f"], "show the toolbar": ["\u663e\u793a\u5de5\u5177\u680f"], "hide the toolbar": ["\u9690\u85cf\u5de5\u5177\u680f"], "close the pager": ["\u5173\u95ed\u9875\u9762"], "ignore": ["\u5ffd\u7565"], "move cursor up": ["\u5149\u6807\u4e0a\u79fb"], "move cursor down": ["\u5149\u6807\u4e0b\u79fb"], "scroll notebook down": ["\u5411\u4e0b\u6eda\u52a8"], "scroll notebook up": ["\u5411\u4e0a\u6eda\u52a8"], "scroll cell center": ["\u6eda\u52a8\u5230\u5355\u5143\u683c\u4e2d\u95f4"], "Scroll the current cell to the center": ["\u628a\u5f53\u524d\u5355\u5143\u683c\u6eda\u52a8\u5230\u4e2d\u95f4"], "scroll cell top": ["\u6eda\u52a8\u5230\u5355\u5143\u683c\u5f00\u59cb\u5904"], "Scroll the current cell to the top": ["\u5c06\u5f53\u524d\u5355\u5143\u683c\u6eda\u52a8\u5230\u9876\u90e8"], "duplicate notebook": ["\u590d\u5236\u4ee3\u7801"], "Create and open a copy of the current notebook": ["\u521b\u5efa\u5e76\u6253\u5f00\u5f53\u524d\u4ee3\u7801\u7684\u4e00\u4e2a\u526f\u672c"], "trust notebook": ["\u4fe1\u4efb\u4ee3\u7801"], "Trust the current notebook": ["\u4fe1\u4efb\u5f53\u524d\u4ee3\u7801"], "rename notebook": ["\u91cd\u547d\u540d"], "Rename the current notebook": ["\u91cd\u547d\u540d"], "toggle all cells output collapsed": ["\u5207\u6362\u6240\u6709\u5355\u5143\u683c\u7684\u8f93\u51fa"], "Toggle the hidden state of all output areas": ["\u5207\u6362\u6240\u6709\u8f93\u51fa\u533a\u57df\u7684\u9690\u85cf\u72b6\u6001"], "toggle all cells output scrolled": ["\u5207\u6362\u6240\u6709\u5355\u5143\u683c\u7684\u8f93\u51fa"], "Toggle the scrolling state of all output areas": ["\u5207\u6362\u6240\u6709\u8f93\u51fa\u533a\u57df\u7684\u6eda\u52a8\u72b6\u6001"], "clear all cells output": ["\u6e05\u7a7a\u6240\u6709\u5355\u5143\u683c\u8f93\u51fa"], "Clear the content of all the outputs": ["\u6e05\u7a7a\u6240\u6709\u7684\u8f93\u51fa\u5185\u5bb9"], "save notebook": ["\u4fdd\u5b58\u4ee3\u7801"], "Save and Checkpoint": ["\u4fdd\u5b58\u5e76\u68c0\u67e5"], "Warning: accessing Cell.cm_config directly is deprecated.": ["\u8b66\u544a: \u8bbf\u95eeCell.cm_config\u5df2\u7ecf\u88ab\u5f03\u7528\u4e86."], "Unrecognized cell type: %s": ["\u672a\u77e5\u7684\u5355\u5143\u683c\u7c7b\u578b: %s"], "Unrecognized cell type": ["\u672a\u77e5\u7684\u5355\u5143\u683c\u7c7b\u578b"], "Error in cell toolbar callback %s": ["\u5de5\u5177\u680f\u8c03\u7528 %s \u51fa\u73b0\u9519\u8bef"], "Clipboard types: %s": ["\u526a\u8d34\u677f\u7c7b\u578b: %s"], "Dialog for paste from system clipboard": ["\u4ece\u7cfb\u7edf\u526a\u5207\u677f\u7c98\u8d34"], "Ctrl-V": [""], "Cmd-V": [""], "Press %s again to paste": ["\u518d\u6309\u4e00\u6b21 %s \u7c98\u8d34"], "Why is this needed? ": ["\u8fd9\u4e2a\u4e3a\u5565\u9700\u8981?"], "We can't get paste events in this browser without a text box. ": ["\u5728\u6d4f\u89c8\u5668\u91cc\u6ca1\u6709\u6587\u672c\u6846\u6211\u4eec\u4e0d\u80fd\u7c98\u8d34. "], "There's an invisible text box focused in this dialog.": ["\u5728\u8fd9\u4e2a\u5bf9\u8bdd\u6846\u4e2d\u6709\u4e00\u4e2a\u4e0d\u53ef\u89c1\u7684\u6587\u672c\u6846."], "%s to paste": ["%s \u6765\u7c98\u8d34"], "Can't execute cell since kernel is not set.": ["\u53ea\u8981\u670d\u52a1\u6ca1\u6709\u8bbe\u7f6e\u5c31\u4e0d\u80fd\u6267\u884c\u5355\u5143\u683c\u4ee3\u7801."], "In": [""], "Could not find a kernel matching %s. Please select a kernel:": ["\u627e\u4e0d\u5230\u670d\u52a1\u5339\u914d %s. \u8bf7\u9009\u62e9\u4e00\u4e2a\u670d\u52a1:"], "Continue Without Kernel": ["\u7ee7\u7eed\u8fd0\u884c\u6ca1\u6709\u670d\u52a1"], "Set Kernel": ["\u8bbe\u7f6e\u670d\u52a1"], "Kernel not found": ["\u670d\u52a1\u6ca1\u627e\u5230"], "Creating Notebook Failed": ["\u521b\u5efa\u4ee3\u7801\u5931\u8d25"], "The error was: %s": ["\u9519\u8bef; %s"], "Run": ["\u8fd0\u884c"], "Code": ["\u4ee3\u7801"], "Markdown": ["\u6807\u8bb0"], "Raw NBConvert": ["\u539f\u751f NBConvert"], "Heading": ["\u6807\u9898"], "unrecognized cell type:": ["\u672a\u8bc6\u522b\u7684\u5355\u5143\u683c\u7c7b\u578b:"], "Failed to retrieve MathJax from '%s'": ["\u4ece '%s' \u4e2d\u672a\u80fd\u68c0\u7d22 MathJax"], "Math/LaTeX rendering will be disabled.": ["Math/LaTeX \u6e32\u67d3 \u5c06\u4f1a\u5931\u6548."], "Trusted Notebook": ["\u53ef\u4fe1\u7684\u7b14\u8bb0"], "Trust Notebook": ["\u4fe1\u4efb\u7b14\u8bb0"], "None": [""], "No checkpoints": ["\u6ca1\u6709\u68c0\u67e5\u70b9"], "Opens in a new window": ["\u5728\u65b0\u7a97\u53e3\u6253\u5f00"], "Autosave in progress, latest changes may be lost.": ["\u81ea\u52a8\u4fdd\u5b58, \u6700\u65b0\u7684\u6539\u53d8\u6709\u53ef\u80fd\u88ab\u4e22\u5f03."], "Unsaved changes will be lost.": ["\u672a\u4fdd\u5b58\u7684\u4fee\u6539\u5c06\u4f1a\u4e22\u5931."], "The Kernel is busy, outputs may be lost.": ["\u670d\u52a1\u6b63\u5fd9, \u8f93\u51fa\u4e5f\u8bb8\u4f1a\u4e22\u5931."], "This notebook is version %1$s, but we only fully support up to %2$s.": ["\u672c\u7a0b\u5e8f\u7248\u672c %1$s, \u4f46\u662f\u6211\u4eec\u53ea\u662f\u652f\u6301\u5230 %2$s."], "You can still work with this notebook, but cell and output types introduced in later notebook versions will not be available.": ["\u60a8\u4ecd\u7136\u53ef\u4ee5\u4f7f\u7528\u672c\u7a0b\u5e8f, \u4f46\u662f\u5728\u4ee5\u540e\u7684\u7248\u672c\u4e2d\u5f15\u5165\u7684\u5355\u5143\u548c\u8f93\u51fa\u7c7b\u578b\u5c06\u4e0d\u53ef\u7528."], "Restart and Run All Cells": ["\u91cd\u542f\u5e76\u8fd0\u884c\u6240\u6709\u4ee3\u7801\u5757"], "Restart and Clear All Outputs": ["\u91cd\u542f\u5e76\u6e05\u7a7a\u6240\u6709\u8f93\u51fa"], "Restart": ["\u91cd\u542f"], "Continue Running": ["\u7ee7\u7eed\u8fd0\u884c"], "Reload": ["\u91cd\u8f7d"], "Overwrite": ["\u91cd\u5199"], "Trust": ["\u4fe1\u4efb"], "Revert": ["\u6062\u590d"], "Newer Notebook": ["\u65b0\u7b14\u8bb0"], "Use markdown headings": ["\u4f7f\u7528\u6807\u7b7e headings"], "Jupyter no longer uses special heading cells. Instead, write your headings in Markdown cells using # characters:": ["Jupyter\u4e0d\u518d\u4f7f\u7528\u7279\u6b8a\u7684\u6807\u9898\u5355\u5143\u683c. \u76f8\u53cd, \u5728Markdown\u5355\u5143\u4e2d\u4f7f\u7528\u5b57\u7b26\u6765\u5199\u6807\u9898:"], "## This is a level 2 heading": ["## \u8fd9\u662f\u4e00\u4e2a 2 heading"], "Restart kernel and re-run the whole notebook?": ["\u91cd\u65b0\u542f\u52a8\u5185\u6838\u5e76\u91cd\u65b0\u8fd0\u884c\u6574\u4e2a\u7b14\u8bb0\u672c?"], "Are you sure you want to restart the current kernel and re-execute the whole notebook? All variables and outputs will be lost.": ["\u60a8\u786e\u5b9a\u8981\u91cd\u65b0\u542f\u52a8\u5f53\u524d\u7684\u5185\u6838\u5e76\u91cd\u65b0\u6267\u884c\u6574\u4e2a\u7b14\u8bb0\u672c\u5417? \u6240\u6709\u7684\u53d8\u91cf\u548c\u8f93\u51fa\u90fd\u5c06\u4e22\u5931."], "Restart kernel and clear all output?": ["\u91cd\u542f\u670d\u52a1\u5e76\u4e14\u6e05\u7a7a\u8f93\u51fa?"], "Do you want to restart the current kernel and clear all output? All variables and outputs will be lost.": ["\u60a8\u662f\u5426\u5e0c\u671b\u91cd\u65b0\u542f\u52a8\u5f53\u524d\u7684\u5185\u6838\u5e76\u6e05\u9664\u6240\u6709\u8f93\u51fa? \u6240\u6709\u7684\u53d8\u91cf\u548c\u8f93\u51fa\u90fd\u5c06\u4e22\u5931."], "Restart kernel?": ["\u91cd\u542f\u670d\u52a1?"], "Do you want to restart the current kernel? All variables will be lost.": ["\u5982\u679c\u91cd\u542f\u670d\u52a1, \u6240\u6709\u53d8\u91cf\u90fd\u4f1a\u4e22\u5f03."], "Shutdown kernel?": ["\u5173\u95ed\u670d\u52a1"], "Do you want to shutdown the current kernel? All variables will be lost.": ["\u5982\u679c\u5173\u95ed\u670d\u52a1\uff0c\u6240\u6709\u53d8\u91cf\u90fd\u4f1a\u4e22\u5931"], "Notebook changed": ["\u7b14\u8bb0\u6539\u53d8\u4e86"], "The notebook file has changed on disk since the last time we opened or saved it. Do you want to overwrite the file on disk with the version open here, or load the version on disk (reload the page)?": ["\u81ea\u4ece\u4e0a\u6b21\u6211\u4eec\u6253\u5f00\u6216\u4fdd\u5b58\u5b83\u4ee5\u6765, \u7b14\u8bb0\u672c\u6587\u4ef6\u5df2\u7ecf\u5728\u78c1\u76d8\u4e0a\u53d1\u751f\u4e86\u53d8\u5316. \u60a8\u662f\u5426\u5e0c\u671b\u5728\u78c1\u76d8\u4e0a\u4f7f\u7528\u6253\u5f00\u7684\u7248\u672c, \u6216\u5728\u78c1\u76d8\u4e0a\u7684\u7248\u672c(\u91cd\u65b0\u52a0\u8f7d\u9875\u9762)\u4e0a\u8986\u76d6\u8be5\u6587\u4ef6?"], "Notebook validation failed": ["Notebook \u5931\u6548"], "The save operation succeeded, but the notebook does not appear to be valid. The validation error was:": ["\u4fdd\u5b58\u64cd\u4f5c\u6210\u529f\u4e86, \u4f46\u662f\u8fd9\u4e2a\u7b14\u8bb0\u672c\u770b\u8d77\u6765\u5e76\u4e0d\u6709\u6548. \u9a8c\u8bc1\u9519\u8bef:"], "A trusted Jupyter notebook may execute hidden malicious code when you open it. Selecting trust will immediately reload this notebook in a trusted state. For more information, see the Jupyter security documentation: ": ["\u5f53\u4f60\u6253\u5f00\u5b83\u65f6, \u4e00\u4e2a\u53ef\u4fe1\u4efb\u7684Jupyter\u7b14\u8bb0\u672c\u53ef\u80fd\u4f1a\u6267\u884c\u9690\u85cf\u7684\u6076\u610f\u4ee3\u7801. \u9009\u62e9\u4fe1\u4efb\u5c06\u7acb\u5373\u5728\u4e00\u4e2a\u53ef\u4fe1\u7684\u72b6\u6001\u4e2d\u91cd\u65b0\u52a0\u8f7d\u8fd9\u4e2a\u7b14\u8bb0\u672c. \u8981\u4e86\u89e3\u66f4\u591a\u4fe1\u606f, \u8bf7\u53c2\u9605Jupyter\u5b89\u5168\u6587\u6863:"], "here": ["\u8fd9\u91cc"], "Trust this notebook?": ["\u4fe1\u4efb\u8fd9\u4e2a\u4ee3\u7801?"], "Notebook failed to load": ["\u4ee3\u7801\u52a0\u8f7d\u5931\u8d25"], "The error was: ": ["\u9519\u8bef: "], "See the error console for details.": ["\u6709\u5173\u8be6\u7ec6\u4fe1\u606f, \u8bf7\u53c2\u9605\u9519\u8bef\u63a7\u5236\u53f0."], "The notebook also failed validation:": ["\u4ee3\u7801\u5931\u8d25\u4e86:"], "An invalid notebook may not function properly. The validation error was:": ["\u65e0\u6548\u7684\u7b14\u8bb0\u672c\u53ef\u80fd\u4e0d\u80fd\u6b63\u5e38\u5de5\u4f5c. \u9a8c\u8bc1\u9519\u8bef:"], "This notebook has been converted from an older notebook format to the current notebook format v(%s).": ["\u672c\u7b14\u8bb0\u672c\u5df2\u4ece\u8f83\u65e7\u7684\u7b14\u8bb0\u672c\u683c\u5f0f\u8f6c\u6362\u4e3a\u5f53\u524d\u7684\u7b14\u8bb0\u672c\u683c\u5f0f v(%s)."], "This notebook has been converted from a newer notebook format to the current notebook format v(%s).": ["\u8fd9\u4e2a\u7b14\u8bb0\u672c\u5df2\u7ecf\u4ece\u4e00\u79cd\u65b0\u7684\u7b14\u8bb0\u672c\u683c\u5f0f\u8f6c\u6362\u4e3a\u5f53\u524d\u7684\u7b14\u8bb0\u672c\u683c\u5f0f v(%s)."], "The next time you save this notebook, the current notebook format will be used.": ["\u4e0b\u6b21\u4f60\u4fdd\u5b58\u8fd9\u4e2a\u7b14\u8bb0\u672c\u65f6, \u5f53\u524d\u7684\u7b14\u8bb0\u672c\u683c\u5f0f\u5c06\u4f1a\u88ab\u4f7f\u7528."], "Older versions of Jupyter may not be able to read the new format.": ["\u65e7\u7248\u672c\u7684Jupyter\u53ef\u80fd\u65e0\u6cd5\u8bfb\u53d6\u65b0\u683c\u5f0f."], "Some features of the original notebook may not be available.": ["\u539f\u59cb\u7b14\u8bb0\u672c\u7684\u4e00\u4e9b\u7279\u6027\u53ef\u80fd\u65e0\u6cd5\u4f7f\u7528."], "To preserve the original version, close the notebook without saving it.": ["\u4e3a\u4e86\u4fdd\u5b58\u539f\u59cb\u7248\u672c, \u5173\u95ed\u7b14\u8bb0\u672c\u800c\u4e0d\u4fdd\u5b58\u5b83."], "Notebook converted": ["\u4ee3\u7801\u88ab\u4fee\u6539\u4e86"], "(No name)": ["(\u6ca1\u6709\u540d\u5b57)"], "An unknown error occurred while loading this notebook. This version can load notebook formats %s or earlier. See the server log for details.": ["\u52a0\u8f7d\u672c\u7b14\u8bb0\u672c\u65f6\u51fa\u73b0\u4e86\u4e00\u4e2a\u672a\u77e5\u7684\u9519\u8bef. \u8fd9\u4e2a\u7248\u672c\u53ef\u4ee5\u52a0\u8f7d%s\u6216\u66f4\u65e9\u7684\u7b14\u8bb0\u672c. \u6709\u5173\u8be6\u7ec6\u4fe1\u606f, \u8bf7\u53c2\u9605\u670d\u52a1\u5668\u65e5\u5fd7."], "Error loading notebook": ["\u52a0\u8f7d\u4ee3\u7801\u51fa\u9519"], "Are you sure you want to revert the notebook to the latest checkpoint?": ["\u786e\u5b9a\u64a4\u9500\u64cd\u4f5c?"], "This cannot be undone.": ["\u8be5\u64cd\u4f5c\u4e0d\u80fd\u88ab\u6267\u884c."], "The checkpoint was last updated at:": ["\u8fd9\u4e2a\u4ee3\u7801\u6700\u540e\u66f4\u65b0\u65f6\u95f4:"], "Revert notebook to checkpoint": ["\u6062\u590d\u4ee3\u7801"], "Edit Mode": ["\u7f16\u8f91\u6a21\u5f0f"], "Command Mode": ["\u547d\u4ee4 \u6a21\u5f0f"], "Kernel Created": ["\u670d\u52a1\u521b\u5efa"], "Connecting to kernel": ["\u6b63\u5728\u8fde\u63a5\u670d\u52a1"], "Not Connected": ["\u672a\u8fde\u63a5\u6210\u529f"], "click to reconnect": ["\u70b9\u51fb\u91cd\u8fde"], "Restarting kernel": ["\u91cd\u542f\u670d\u52a1"], "Kernel Restarting": ["\u670d\u52a1\u6b63\u91cd\u542f"], "The kernel appears to have died. It will restart automatically.": ["\u670d\u52a1\u4f3c\u4e4e\u6302\u6389\u4e86,\u4f46\u662f\u4f1a\u7acb\u523b\u91cd\u542f\u7684."], "Dead kernel": ["\u6302\u6389\u7684\u670d\u52a1"], "Kernel Dead": ["\u670d\u52a1\u6302\u6389"], "Interrupting kernel": ["\u6b63\u5728\u4e2d\u65ad\u670d\u52a1"], "No Connection to Kernel": ["\u6ca1\u6709\u5230\u670d\u52a1\u7684\u8fde\u63a5"], "A connection to the notebook server could not be established. The notebook will continue trying to reconnect. Check your network connection or notebook server configuration.": ["\u5230\u540e\u53f0\u670d\u52a1\u7684\u8fde\u63a5\u6ca1\u80fd\u5efa\u7acb, \u6211\u4eec\u4f1a\u7ee7\u7eed\u5c1d\u8bd5\u91cd\u8fde, \u8bf7\u68c0\u51fa\u7f51\u7edc\u8fde\u63a5...\u8fd8\u6709\u670d\u52a1\u914d\u7f6e."], "Connection failed": ["\u8fde\u63a5\u5931\u8d25"], "No kernel": ["\u6ca1\u6709\u670d\u52a1"], "Kernel is not running": ["\u670d\u52a1\u6ca1\u6709\u8fd0\u884c"], "Don't Restart": ["\u4e0d\u8981\u91cd\u542f"], "Try Restarting Now": ["\u73b0\u5728\u5c1d\u8bd5\u91cd\u542f"], "The kernel has died, and the automatic restart has failed. It is possible the kernel cannot be restarted. If you are not able to restart the kernel, you will still be able to save the notebook, but running code will no longer work until the notebook is reopened.": ["\u5185\u6838\u5df2\u7ecf\u6b7b\u4ea1\uff0c\u81ea\u52a8\u91cd\u542f\u4e5f\u5931\u8d25\u4e86\u3002\u6709\u53ef\u80fd\u5185\u6838\u4e0d\u80fd\u91cd\u65b0\u542f\u52a8\u3002\u5982\u679c\u60a8\u4e0d\u80fd\u91cd\u65b0\u542f\u52a8\u5185\u6838\uff0c\u60a8\u4ecd\u7136\u80fd\u591f\u4fdd\u5b58\u7b14\u8bb0\u672c\uff0c\u4f46\u662f\u8fd0\u884c\u4ee3\u7801\u5c06\u4e0d\u518d\u5de5\u4f5c\uff0c\u76f4\u5230\u7b14\u8bb0\u672c\u91cd\u65b0\u6253\u5f00. "], "No Kernel": ["\u6ca1\u6709\u670d\u52a1"], "Failed to start the kernel": ["\u542f\u52a8\u670d\u52a1\u5931\u8d25"], "Kernel Busy": ["\u670d\u52a1\u6b63\u5fd9"], "Kernel starting, please wait...": ["\u670d\u52a1\u6b63\u5728\u542f\u52a8,\u8bf7\u7b49\u5f85..."], "Kernel Idle": ["\u670d\u52a1\u7a7a\u95f2"], "Kernel ready": ["\u670d\u52a1\u51c6\u5907\u597d\u4e86"], "Using kernel: ": ["\u4f7f\u7528\u670d\u52a1:"], "Only candidate for language: %1$s was %2$s.": ["\u53ea\u652f\u6301\u8bed\u8a00: %1$s - %2$s."], "Loading notebook": ["\u52a0\u8f7d\u670d\u52a1"], "Notebook loaded": ["\u7a0b\u5e8f\u5df2\u52a0\u8f7d"], "Saving notebook": ["\u4fdd\u5b58\u4ee3\u7801"], "Notebook saved": ["\u4ee3\u7801\u5df2\u4fdd\u5b58"], "Notebook save failed": ["\u4ee3\u7801\u4fdd\u5b58\u5931\u8d25"], "Notebook copy failed": ["\u4ee3\u7801\u590d\u5236\u5931\u8d25"], "Checkpoint created": ["checkpoint\u5df2\u521b\u5efa"], "Checkpoint failed": ["Checkpoint \u5931\u8d25"], "Checkpoint deleted": ["checkpoint\u5df2\u5220\u9664"], "Checkpoint delete failed": ["checkpoint\u5220\u9664\u5931\u8d25"], "Restoring to checkpoint...": ["\u91cd\u65b0\u4fdd\u5b58checkpoint..."], "Checkpoint restore failed": ["checkpoint \u91cd\u65b0\u4fdd\u5b58\u5931\u8d25"], "Autosave disabled": ["\u81ea\u52a8\u4fdd\u5b58\u5931\u8d25"], "Saving every %d sec.": ["\u6bcf\u9694 %s \u79d2\u4fdd\u5b58\u4e00\u6b21."], "Trusted": ["\u53ef\u4fe1\u7684"], "Not Trusted": ["\u4e0d\u53ef\u4fe1"], "click to expand output": ["\u70b9\u51fb\u5c55\u5f00\u5185\u5bb9"], "click to expand output; double click to hide output": ["\u70b9\u51fb\u5c55\u5f00\u8f93\u51fa; \u53cc\u51fb\u9690\u85cf"], "click to unscroll output; double click to hide": ["\u5355\u51fb\u663e\u793a\u8f93\u51fa; \u53cc\u51fb\u9690\u85cf"], "click to scroll output; double click to hide": ["\u70b9\u51fb\u6eda\u52a8\u8f93\u51fa;\u53cc\u51fb\u9690\u85cf"], "Javascript error adding output!": ["Javascript\u6dfb\u52a0\u8f93\u51fa\u9519\u8bef!"], "See your browser Javascript console for more details.": ["\u66f4\u591a\u7ec6\u8282\u8bf7\u53c2\u89c1\u60a8\u7684\u6d4f\u89c8\u5668Javascript\u63a7\u5236\u53f0\u3002"], "Out[%d]:": ["\u8f93\u51fa[%d]:"], "Unrecognized output: %s": ["\u672a\u8bc6\u522b\u7684\u8f93\u51fa: %s"], "Open the pager in an external window": ["\u5728\u5185\u90e8\u7a97\u53e3\u6253\u5f00\u9875\u9762"], "Close the pager": ["\u5173\u95ed\u9875\u9762"], "Jupyter Pager": ["Jupyter \u9875\u9762"], "go to cell start": ["\u8df3\u5230\u5355\u5143\u683c\u8d77\u59cb\u5904"], "go to cell end": ["\u8df3\u5230\u5355\u5143\u683c\u6700\u540e"], "go one word left": ["\u8df3\u5230\u5355\u8bcd\u5de6\u8fb9"], "go one word right": ["\u8df3\u5230\u5355\u8bcd\u53f3\u8fb9"], "delete word before": ["\u5220\u9664\u524d\u9762\u7684\u5355\u8bcd"], "delete word after": ["\u5220\u9664\u540e\u9762\u7684\u5355\u8bcd"], "redo": ["\u91cd\u505a"], "redo selection": ["\u91cd\u65b0\u9009\u62e9"], "emacs-style line kill": [""], "delete line left of cursor": ["\u5220\u9664\u5149\u6807\u5de6\u8fb9\u7ebf"], "delete line right of cursor": [""], "code completion or indent": ["\u4ee3\u7801\u5b8c\u6210\u6216\u7f29\u8fdb"], "tooltip": ["\u5de5\u5177\u63d0\u793a"], "indent": ["\u7f29\u8fdb"], "dedent": ["\u53d6\u6d88\u7f29\u8fdb"], "select all": ["\u5168\u9009"], "undo": ["\u64a4\u9500"], "comment": ["\u8bc4\u8bba"], "delete whole line": ["\u5220\u9664\u6574\u884c"], "undo selection": ["\u64a4\u9500\u9009\u62e9"], "toggle overwrite flag": ["\u5207\u6362 \u91cd\u5199\u6807\u5fd7"], "Shift": ["Shift"], "Alt": ["Alt"], "Up": ["\u4e0a"], "Down": ["\u4e0b"], "Left": ["\u5de6"], "Right": ["\u53f3"], "Tab": ["Tab"], "Caps Lock": ["Caps Lock"], "Esc": ["Esc"], "Ctrl": ["Ctrl"], "Enter": ["Enter"], "Page Up": ["\u4e0a\u4e00\u9875"], "Page Down": ["\u4e0b\u4e00\u9875"], "Home": ["Home"], "End": ["End"], "Space": ["\u7a7a\u683c"], "Backspace": ["\u5220\u9664"], "Minus": [""], "PageUp": ["\u4e0a\u4e00\u9875"], "The Jupyter Notebook has two different keyboard input modes.": ["Jupyter\u7b14\u8bb0\u672c\u6709\u4e24\u79cd\u4e0d\u540c\u7684\u952e\u76d8\u8f93\u5165\u6a21\u5f0f."], "<b>Edit mode</b> allows you to type code or text into a cell and is indicated by a green cell border.": ["<b>\u7f16\u8f91\u6a21\u5f0f</b>\u5141\u8bb8\u60a8\u5c06\u4ee3\u7801\u6216\u6587\u672c\u8f93\u5165\u5230\u4e00\u4e2a\u5355\u5143\u683c\u4e2d\uff0c\u5e76\u901a\u8fc7\u4e00\u4e2a\u7eff\u8272\u7684\u5355\u5143\u683c\u6765\u8868\u793a"], "<b>Command mode</b> binds the keyboard to notebook level commands and is indicated by a grey cell border with a blue left margin.": ["<b>\u547d\u4ee4\u6a21\u5f0f</b>\u5c06\u952e\u76d8\u4e0e\u7b14\u8bb0\u672c\u7ea7\u547d\u4ee4\u7ed1\u5b9a\u5728\u4e00\u8d77\uff0c\u5e76\u901a\u8fc7\u4e00\u4e2a\u7070\u8272\u7684\u5355\u5143\u683c\u8fb9\u754c\u663e\u793a\uff0c\u8be5\u8fb9\u6846\u4e3a\u84dd\u8272\u7684\u5de6\u8fb9\u6846\u3002"], "Close": ["\u5173\u95ed"], "Keyboard shortcuts": ["\u5feb\u6377\u952e"], "Command": ["\u547d\u4ee4"], "Control": ["\u63a7\u5236"], "Option": ["\u9009\u9879"], "Return": ["\u8fd4\u56de"], "Command Mode (press %s to enable)": ["\u547d\u4ee4\u884c\u6a21\u5f0f(\u6309 %s \u751f\u6548)"], "Edit Shortcuts": ["\u7f16\u8f91\u5feb\u6377\u952e"], "edit command-mode keyboard shortcuts": ["\u7f16\u8f91\u547d\u4ee4\u884c\u5feb\u6377\u952e"], "Edit Mode (press %s to enable)": ["\u7f16\u8f91\u6a21\u5f0f(\u6309 %s \u751f\u6548)"], "Autosave Failed!": ["\u81ea\u52a8\u4fdd\u5b58\u5931\u8d25!"], "Rename": ["\u91cd\u547d\u540d"], "Enter a new notebook name:": ["\u8bf7\u8f93\u5165\u4ee3\u7801\u540d\u79f0:"], "Rename Notebook": ["\u91cd\u547d\u540d"], "Invalid notebook name. Notebook names must have 1 or more characters and can contain any characters except :/\\. Please enter a new notebook name:": ["\u65e0\u6548\u7684\u6587\u4ef6\u540d. \u4ee3\u7801\u540d\u4e0d\u80fd\u4e3a\u7a7a \u5e76\u4e14\u4e0d\u80fd\u5305\u542b\".\" \u8bf7\u8f93\u5165\u4e00\u4e2a\u65b0\u7684\u6587\u4ef6\u540d:"], "Renaming...": ["\u6b63\u5728\u91cd\u547d\u540d..."], "Unknown error": ["\u672a\u77e5\u9519\u8bef"], "no checkpoint": ["\u6ca1\u6709\u68c0\u67e5\u70b9"], "Last Checkpoint: %s": ["\u6700\u540e\u68c0\u67e5: %s "], "(unsaved changes)": ["(\u672a\u4fdd\u5b58\u6539\u53d8)"], "(autosaved)": ["(\u81ea\u52a8\u4fdd\u5b58)"], "Warning: too many matches (%d). Some changes might not be shown or applied.": ["\u8b66\u544a:\u592a\u591a\u7684\u5339\u914d(%d). \u6709\u4e9b\u66f4\u6539\u53ef\u80fd\u4e0d\u4f1a\u88ab\u663e\u793a\u6216\u5e94\u7528."], "%d match": ["%d \u5339\u914d", "%d \u5339\u914d"], "More than 100 matches, aborting": ["\u8d85\u8fc7100\u4e2a\u5339\u914d, \u4e2d\u6b62"], "Use regex (JavaScript regex syntax)": [""], "Replace in selected cells": ["\u5728\u9009\u4e2d\u5355\u5143\u683c\u4e2d\u66ff\u6362"], "Match case": ["\u5339\u914d"], "Find": ["\u67e5\u627e"], "Replace": ["\u66ff\u6362"], "No matches, invalid or empty regular expression": ["\u6ca1\u5339\u914d\u5230, \u65e0\u6548\u6216\u7a7a\u7684\u6b63\u5219\u8868\u8fbe\u5f0f"], "Replace All": ["\u66ff\u6362\u6240\u6709"], "Find and Replace": ["\u67e5\u627e\u5e76\u4e14\u66ff\u6362"], "find and replace": ["\u67e5\u627e\u5e76\u4e14\u66ff\u6362"], "Write raw LaTeX or other formats here, for use with nbconvert. It will not be rendered in the notebook. When passing through nbconvert, a Raw Cell's content is added to the output unmodified.": [""], "Grow the tooltip vertically (press shift-tab twice)": [""], "show the current docstring in pager (press shift-tab 4 times)": [""], "Open in Pager": [""], "Tooltip will linger for 10 seconds while you type": [""], "Welcome to the Notebook Tour": ["\u6b22\u8fce\u4f7f\u7528Notebook"], "You can use the left and right arrow keys to go backwards and forwards.": ["\u4f60\u53ef\u4ee5\u4f7f\u7528\u5de6\u53f3\u7bad\u5934\u952e\u6765\u524d\u540e\u79fb\u52a8"], "Filename": ["\u6587\u4ef6\u540d"], "Click here to change the filename for this notebook.": ["\u70b9\u51fb\u6539\u53d8\u4ee3\u7801\u6587\u4ef6\u540d"], "Notebook Menubar": ["\u83dc\u5355\u680f"], "The menubar has menus for actions on the notebook, its cells, and the kernel it communicates with.": ["\u83dc\u5355\u680f\u64cd\u4f5c\u754c\u9762, \u5b83\u7684\u5355\u5143\u683c\u548c\u5b83\u4e0e\u4e4b\u901a\u4fe1\u7684\u5185\u6838\u4e0a\u8fdb\u884c\u64cd\u4f5c. "], "Notebook Toolbar": ["\u4ee3\u7801\u5de5\u5177\u680f"], "The toolbar has buttons for the most common actions. Hover your mouse over each button for more information.": ["\u5de5\u5177\u680f\u6709\u6700\u5e38\u89c1\u64cd\u4f5c\u7684\u6309\u94ae\u3002\u5c06\u9f20\u6807\u60ac\u505c\u5728\u6bcf\u4e2a\u6309\u94ae\u4e0a\u4ee5\u83b7\u5f97\u66f4\u591a\u4fe1\u606f\u3002"], "Mode Indicator": ["\u6a21\u5f0f\u6307\u793a\u5668"], "The Notebook has two modes: Edit Mode and Command Mode. In this area, an indicator can appear to tell you which mode you are in.": ["\u8be5\u7b14\u8bb0\u672c\u6709\u4e24\u79cd\u6a21\u5f0f:\u7f16\u8f91\u6a21\u5f0f\u548c\u547d\u4ee4\u6a21\u5f0f. \u5728\u8fd9\u4e2a\u533a\u57df, \u4e00\u4e2a\u6307\u793a\u5668\u53ef\u4ee5\u663e\u793a\u4f60\u5728\u54ea\u4e2a\u6a21\u5f0f. "], "Right now you are in Command Mode, and many keyboard shortcuts are available. In this mode, no icon is displayed in the indicator area.": ["\u73b0\u5728\u4f60\u5904\u4e8e\u547d\u4ee4\u6a21\u5f0f, \u8bb8\u591a\u5feb\u6377\u952e\u90fd\u53ef\u4ee5\u4f7f\u7528. \u5728\u8be5\u6a21\u5f0f\u4e0b, \u6307\u793a\u533a\u57df\u4e2d\u6ca1\u6709\u663e\u793a\u56fe\u6807."], "Pressing <code>Enter</code> or clicking in the input text area of the cell switches to Edit Mode.": ["\u6309\u4e0b<code>Enter</code>, \u6216\u8005\u70b9\u51fb\u8f93\u5165\u6587\u672c\u533a\u57df, \u5c06\u4f60\u8fd4\u56de\u5230\u547d\u4ee4\u6a21\u5f0f. "], "Notice that the border around the currently active cell changed color. Typing will insert text into the currently active cell.": ["\u8bf7\u6ce8\u610f, \u5f53\u524d\u6d3b\u52a8\u5355\u5143\u5468\u56f4\u7684\u8fb9\u6846\u6539\u53d8\u4e86\u989c\u8272. \u952e\u5165\u5c06\u5728\u5f53\u524d\u6d3b\u52a8\u5355\u5143\u4e2d\u63d2\u5165\u6587\u672c."], "Back to Command Mode": ["\u8f6c\u5230\u547d\u4ee4\u6a21\u5f0f"], "Pressing <code>Esc</code> or clicking outside of the input text area takes you back to Command Mode.": ["\u6309\u4e0b<code>Esc</code>, \u6216\u8005\u70b9\u51fb\u8f93\u5165\u6587\u672c\u533a\u57df, \u5c06\u4f60\u8fd4\u56de\u5230\u547d\u4ee4\u6a21\u5f0f. "], "Keyboard Shortcuts": ["\u5feb\u6377\u952e"], "You can click here to get a list of all of the keyboard shortcuts.": ["\u70b9\u51fb\u83b7\u5f97\u6240\u6709\u5feb\u6377\u952e"], "Kernel Indicator": ["\u5185\u6838\u6307\u793a\u5668"], "This is the Kernel indicator. It looks like this when the Kernel is idle.": ["\u8fd9\u662f\u5185\u6838\u6307\u793a\u5668\u3002\u5f53\u5185\u6838\u7a7a\u95f2\u65f6\uff0c\u5b83\u770b\u8d77\u6765\u5c31\u50cf\u8fd9\u6837\u3002"], "The Kernel indicator looks like this when the Kernel is busy.": ["\u5185\u6838\u6307\u793a\u5668\u5728\u5185\u6838\u7e41\u5fd9\u65f6\u770b\u8d77\u6765\u662f\u8fd9\u6837\u7684\u3002"], "Interrupting the Kernel": ["\u5185\u6838\u4e2d\u65ad"], "To cancel a computation in progress, you can click here.": ["\u8981\u53d6\u6d88\u6b63\u5728\u8fdb\u884c\u7684\u8ba1\u7b97\uff0c\u60a8\u53ef\u4ee5\u70b9\u51fb\u8fd9\u91cc\u3002"], "Notification Area": ["\u4efb\u52a1\u680f\u901a\u77e5\u533a"], "Messages in response to user actions (Save, Interrupt, etc.) appear here.": ["\u54cd\u5e94\u7528\u6237\u64cd\u4f5c(\u4fdd\u5b58, \u4e2d\u65ad\u7b49)\u7684\u6d88\u606f\u51fa\u73b0\u5728\u8fd9\u91cc."], "End of Tour": ["\u7ed3\u675f"], "This concludes the Jupyter Notebook User Interface Tour.": ["\u8fd9\u5c31\u7ed3\u675f\u4e86Jupyter\u7b14\u8bb0\u672c\u7528\u6237\u754c\u9762\u4e4b\u65c5\u3002"], "Edit Attachments": ["\u7f16\u8f91\u9644\u4ef6"], "Cell": ["\u5355\u5143\u683c"], "Edit Metadata": ["\u7f16\u8f91\u5143\u6570\u636e"], "Custom": [""], "Set the MIME type of the raw cell:": [""], "Raw Cell MIME Type": [""], "Raw NBConvert Format": [""], "Raw Cell Format": [""], "Slide": ["\u5e7b\u706f\u7247"], "Sub-Slide": ["\u5b50\u5e7b\u706f\u7247"], "Fragment": ["\u788e\u7247"], "Skip": ["\u8df3\u8fc7"], "Notes": ["\u4ee3\u7801"], "Slide Type": ["\u7c7b\u578b"], "Slideshow": ["\u5e7b\u706f\u7247"], "Add tag": ["\u6dfb\u52a0\u6807\u7b7e"], "Edit the list of tags below. All whitespace is treated as tag separators.": ["\u7f16\u8f91\u4e0b\u9762\u7684\u6807\u7b7e\u5217\u8868. \u6240\u6709\u7a7a\u683c\u90fd\u88ab\u5f53\u4f5c\u6807\u8bb0\u5206\u9694\u7b26."], "Edit the tags": ["\u7f16\u8f91tags"], "Edit Tags": ["\u7f16\u8f91tags"], "Shutdown": ["\u5173\u95ed"], "Create a new notebook with %s": ["\u521b\u5efa\u65b0\u7684\u4ee3\u7801 %s"], "An error occurred while creating a new notebook.": ["\u5f53\u521b\u5efa\u65b0\u7684notebook\u7684\u65f6\u5019\u51fa\u73b0\u4e00\u4e2a\u9519\u8bef."], "Creating File Failed": ["\u521b\u5efa\u6587\u4ef6\u5931\u8d25"], "An error occurred while creating a new file.": ["\u521b\u5efa\u65b0\u6587\u4ef6\u7684\u65f6\u5019\u51fa\u73b0\u4e86\u4e00\u4e2a\u9519\u8bef"], "Creating Folder Failed": ["\u521b\u5efa\u6587\u4ef6\u5939\u5931\u8d25"], "An error occurred while creating a new folder.": ["\u521b\u5efa\u65b0\u6587\u4ef6\u5939\u7684\u65f6\u5019\u51fa\u73b0\u4e86\u4e00\u4e2a\u9519\u8bef."], "Failed to read file": ["\u8bfb\u53d6\u6587\u4ef6\u5931\u8d25"], "Failed to read file %s": ["\u8bfb\u53d6\u4ee3\u7801\u6587\u4ef6 %s \u5931\u8d25\u4e86."], "The file size is %d MB. Do you still want to upload it?": ["\u6587\u4ef6\u5927\u5c0f\u4e3a %d MB, \u8fd8\u60f3\u4e0a\u4f20\u4e48?"], "Large file size warning": ["\u8bf7\u6ce8\u610f\u6587\u4ef6\u5927\u5c0f..."], "Server error: ": ["\u670d\u52a1\u51fa\u73b0\u9519\u8bef:"], "The notebook list is empty.": ["\u4ee3\u7801\u5217\u8868\u4e3a\u7a7a, \u8bf7\u6dfb\u52a0\u4ee3\u7801."], "Click here to rename, delete, etc.": ["\u70b9\u51fb\u8fdb\u884c\u64cd\u4f5c."], "Running": ["\u8fd0\u884c"], "Enter a new file name:": ["\u8bf7\u8f93\u5165\u4e00\u4e2a\u65b0\u7684\u6587\u4ef6\u540d:"], "Enter a new directory name:": ["\u8bf7\u8f93\u5165\u4e00\u4e2a\u65b0\u7684\u8def\u5f84:"], "Enter a new name:": ["\u8bf7\u8f93\u5165\u65b0\u540d\u5b57:"], "Rename file": ["\u6587\u4ef6\u91cd\u547d\u540d"], "Rename directory": ["\u91cd\u547d\u540d\u8def\u5f84"], "Rename notebook": ["\u91cd\u547d\u540d"], "Move": ["\u79fb\u52a8"], "An error occurred while renaming \"%1$s\" to \"%2$s\".": ["\u5f53\u628a \"%1$s\" \u91cd\u547d\u540d\u4e3a \"%2$s\" \u65f6\u51fa\u73b0\u9519\u8bef."], "Rename Failed": ["\u91cd\u547d\u540d\u5931\u8d25"], "Enter a new destination directory path for this item:": ["\u4e3a\u4ee3\u7801\u9009\u62e9\u4e00\u4e2a\u65b0\u7684\u8def\u5f84:", "\u4e3a\u9009\u4e2d\u7684 %d \u4ee3\u7801\u9009\u62e9\u4e00\u4e2a\u65b0\u7684\u8def\u5f84:"], "Move an Item": ["\u79fb\u52a8\u4e00\u4e2a\u4ee3\u7801\u6587\u4ef6", "\u79fb\u52a8 %d \u4e2a\u4ee3\u7801\u6587\u4ef6"], "An error occurred while moving \"%1$s\" from \"%2$s\" to \"%3$s\".": ["\u5f53\u628a \"%1$s\" \u4ece \"%2$s\" \u79fb\u52a8\u5230 \"%3$s\" \u65f6\u51fa\u73b0\u9519\u8bef."], "Move Failed": ["\u79fb\u52a8\u5931\u8d25"], "Are you sure you want to permanently delete: \"%s\"?": ["\u5220\u9664\u4e0d\u53ef\u6062\u590d: \"%s\", \u786e\u5b9a\u5220\u9664?", "\u5220\u9664\u4e0d\u53ef\u6062\u590d: \u9009\u62e9 %d \u6587\u4ef6, \u786e\u5b9a\u5220\u9664?"], "An error occurred while deleting \"%s\".": ["\u5f53\u5220\u9664 \"%s\" \u65f6, \u51fa\u73b0\u9519\u8bef."], "Delete Failed": ["\u5220\u9664\u5931\u8d25"], "Are you sure you want to duplicate: \"%s\"?": ["\u786e\u5b9a\u590d\u5236: \"%s\"?", "\u786e\u5b9a\u590d\u5236: \u5df2\u9009\u62e9 %d \u6587\u4ef6?"], "Duplicate": ["\u590d\u5236"], "An error occurred while duplicating \"%s\".": ["\u5f53\u590d\u5236\"%s\" \u65f6\u51fa\u73b0\u9519\u8bef."], "Duplicate Failed": ["\u590d\u5236\u5931\u8d25"], "Upload": ["\u4e0a\u4f20"], "Invalid file name": ["\u65e0\u6548\u7684\u6587\u4ef6\u540d"], "File names must be at least one character and not start with a period": ["\u6587\u4ef6\u540d\u4e0d\u80fd\u4e3a\u7a7a...\u5e76\u4e14\u4e0d\u80fd\u4ee5\u53e5\u53f7\u5f00\u59cb,\u9664\u4e0b\u5212\u7ebf\u4ee5\u5916\u7684\u7b26\u53f7\u90fd\u4e0d\u80fd\u5f00\u5934..."], "Cannot upload invalid Notebook": ["\u65e0\u6cd5\u4e0a\u4f20\u65e0\u6548\u7684Notebook"], "There is already a file named \"%s\". Do you want to replace it?": ["\u6587\u4ef6\u540d\u5df2\u7ecf\u5b58\u5728 \"%s\", \u9700\u8981\u66ff\u6362\u73b0\u6709\u6587\u4ef6?"], "Replace file": ["\u66ff\u6362\u6587\u4ef6"]}}};
document.documentElement.lang = navigator.language.toLowerCase();
</script>
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="services/contents" src="./diff_wav_jupyter_files/contents.js.下载"></script><style>hcfy-result.__hcfy__result__loaded__.__hcfy__result__both__{border: 1px dotted}</style><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="custom/custom" src="./diff_wav_jupyter_files/custom.js.下载"></script><style type="text/css">.MathJax_Hover_Frame {border-radius: .25em; -webkit-border-radius: .25em; -moz-border-radius: .25em; -khtml-border-radius: .25em; box-shadow: 0px 0px 15px #83A; -webkit-box-shadow: 0px 0px 15px #83A; -moz-box-shadow: 0px 0px 15px #83A; -khtml-box-shadow: 0px 0px 15px #83A; border: 1px solid #A6D ! important; display: inline-block; position: absolute}
.MathJax_Menu_Button .MathJax_Hover_Arrow {position: absolute; cursor: pointer; display: inline-block; border: 2px solid #AAA; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -khtml-border-radius: 4px; font-family: 'Courier New',Courier; font-size: 9px; color: #F0F0F0}
.MathJax_Menu_Button .MathJax_Hover_Arrow span {display: block; background-color: #AAA; border: 1px solid; border-radius: 3px; line-height: 0; padding: 4px}
.MathJax_Hover_Arrow:hover {color: white!important; border: 2px solid #CCC!important}
.MathJax_Hover_Arrow:hover span {background-color: #CCC!important}
</style><style type="text/css">#MathJax_About {position: fixed; left: 50%; width: auto; text-align: center; border: 3px outset; padding: 1em 2em; background-color: #DDDDDD; color: black; cursor: default; font-family: message-box; font-size: 120%; font-style: normal; text-indent: 0; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; z-index: 201; border-radius: 15px; -webkit-border-radius: 15px; -moz-border-radius: 15px; -khtml-border-radius: 15px; box-shadow: 0px 10px 20px #808080; -webkit-box-shadow: 0px 10px 20px #808080; -moz-box-shadow: 0px 10px 20px #808080; -khtml-box-shadow: 0px 10px 20px #808080; filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')}
#MathJax_About.MathJax_MousePost {outline: none}
.MathJax_Menu {position: absolute; background-color: white; color: black; width: auto; padding: 2px; border: 1px solid #CCCCCC; margin: 0; cursor: default; font: menu; text-align: left; text-indent: 0; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; z-index: 201; box-shadow: 0px 10px 20px #808080; -webkit-box-shadow: 0px 10px 20px #808080; -moz-box-shadow: 0px 10px 20px #808080; -khtml-box-shadow: 0px 10px 20px #808080; filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')}
.MathJax_MenuItem {padding: 2px 2em; background: transparent}
.MathJax_MenuArrow {position: absolute; right: .5em; padding-top: .25em; color: #666666; font-size: .75em}
.MathJax_MenuActive .MathJax_MenuArrow {color: white}
.MathJax_MenuArrow.RTL {left: .5em; right: auto}
.MathJax_MenuCheck {position: absolute; left: .7em}
.MathJax_MenuCheck.RTL {right: .7em; left: auto}
.MathJax_MenuRadioCheck {position: absolute; left: 1em}
.MathJax_MenuRadioCheck.RTL {right: 1em; left: auto}
.MathJax_MenuLabel {padding: 2px 2em 4px 1.33em; font-style: italic}
.MathJax_MenuRule {border-top: 1px solid #CCCCCC; margin: 4px 1px 0px}
.MathJax_MenuDisabled {color: GrayText}
.MathJax_MenuActive {background-color: Highlight; color: HighlightText}
.MathJax_MenuDisabled:focus, .MathJax_MenuLabel:focus {background-color: #E8E8E8}
.MathJax_ContextMenu:focus {outline: none}
.MathJax_ContextMenu .MathJax_MenuItem:focus {outline: none}
#MathJax_AboutClose {top: .2em; right: .2em}
.MathJax_Menu .MathJax_MenuClose {top: -10px; left: -10px}
.MathJax_MenuClose {position: absolute; cursor: pointer; display: inline-block; border: 2px solid #AAA; border-radius: 18px; -webkit-border-radius: 18px; -moz-border-radius: 18px; -khtml-border-radius: 18px; font-family: 'Courier New',Courier; font-size: 24px; color: #F0F0F0}
.MathJax_MenuClose span {display: block; background-color: #AAA; border: 1.5px solid; border-radius: 18px; -webkit-border-radius: 18px; -moz-border-radius: 18px; -khtml-border-radius: 18px; line-height: 0; padding: 8px 0 6px}
.MathJax_MenuClose:hover {color: white!important; border: 2px solid #CCC!important}
.MathJax_MenuClose:hover span {background-color: #CCC!important}
.MathJax_MenuClose:hover:focus {outline: none}
</style><style type="text/css">.MathJax_Preview .MJXf-math {color: inherit!important}
</style><style type="text/css">.MJX_Assistive_MathML {position: absolute!important; top: 0; left: 0; clip: rect(1px, 1px, 1px, 1px); padding: 1px 0 0 0!important; border: 0!important; height: 1px!important; width: 1px!important; overflow: hidden!important; display: block!important; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none}
.MJX_Assistive_MathML.MJX_Assistive_MathML_Block {width: 100%!important}
</style><style type="text/css">#MathJax_Zoom {position: absolute; background-color: #F0F0F0; overflow: auto; display: block; z-index: 301; padding: .5em; border: 1px solid black; margin: 0; font-weight: normal; font-style: normal; text-align: left; text-indent: 0; text-transform: none; line-height: normal; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; box-shadow: 5px 5px 15px #AAAAAA; -webkit-box-shadow: 5px 5px 15px #AAAAAA; -moz-box-shadow: 5px 5px 15px #AAAAAA; -khtml-box-shadow: 5px 5px 15px #AAAAAA; filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')}
#MathJax_ZoomOverlay {position: absolute; left: 0; top: 0; z-index: 300; display: inline-block; width: 100%; height: 100%; border: 0; padding: 0; margin: 0; background-color: white; opacity: 0; filter: alpha(opacity=0)}
#MathJax_ZoomFrame {position: relative; display: inline-block; height: 0; width: 0}
#MathJax_ZoomEventTrap {position: absolute; left: 0; top: 0; z-index: 302; display: inline-block; border: 0; padding: 0; margin: 0; background-color: white; opacity: 0; filter: alpha(opacity=0)}
</style><style type="text/css">.MathJax_Preview {color: #888}
#MathJax_Message {position: fixed; left: 1em; bottom: 1.5em; background-color: #E6E6E6; border: 1px solid #959595; margin: 0px; padding: 2px 8px; z-index: 102; color: black; font-size: 80%; width: auto; white-space: nowrap}
#MathJax_MSIE_Frame {position: absolute; top: 0; left: 0; width: 0px; z-index: 101; border: 0px; margin: 0px; padding: 0px}
.MathJax_Error {color: #CC0000; font-style: italic}
</style><style type="text/css">div.MathJax_MathML {text-align: center; margin: .75em 0px; display: block!important}
.MathJax_MathML {font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
span.MathJax_MathML {display: inline!important}
.MathJax_mmlExBox {display: block!important; overflow: hidden; height: 1px; width: 60ex; min-height: 0; max-height: none; padding: 0; border: 0; margin: 0}
[class="MJX-tex-oldstyle"] {font-family: MathJax_Caligraphic, MathJax_Caligraphic-WEB}
[class="MJX-tex-oldstyle-bold"] {font-family: MathJax_Caligraphic, MathJax_Caligraphic-WEB; font-weight: bold}
[class="MJX-tex-caligraphic"] {font-family: MathJax_Caligraphic, MathJax_Caligraphic-WEB}
[class="MJX-tex-caligraphic-bold"] {font-family: MathJax_Caligraphic, MathJax_Caligraphic-WEB; font-weight: bold}
@font-face /*1*/ {font-family: MathJax_Caligraphic-WEB; src: url('http://cluster-proxy.sh.sensetime.com:12723/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf')}
@font-face /*2*/ {font-family: MathJax_Caligraphic-WEB; font-weight: bold; src: url('http://cluster-proxy.sh.sensetime.com:12723/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf')}
[mathvariant="double-struck"] {font-family: MathJax_AMS, MathJax_AMS-WEB}
[mathvariant="script"] {font-family: MathJax_Script, MathJax_Script-WEB}
[mathvariant="fraktur"] {font-family: MathJax_Fraktur, MathJax_Fraktur-WEB}
[mathvariant="bold-script"] {font-family: MathJax_Script, MathJax_Caligraphic-WEB; font-weight: bold}
[mathvariant="bold-fraktur"] {font-family: MathJax_Fraktur, MathJax_Fraktur-WEB; font-weight: bold}
[mathvariant="monospace"] {font-family: monospace}
[mathvariant="sans-serif"] {font-family: sans-serif}
[mathvariant="bold-sans-serif"] {font-family: sans-serif; font-weight: bold}
[mathvariant="sans-serif-italic"] {font-family: sans-serif; font-style: italic}
[mathvariant="sans-serif-bold-italic"] {font-family: sans-serif; font-style: italic; font-weight: bold}
@font-face /*3*/ {font-family: MathJax_AMS-WEB; src: url('http://cluster-proxy.sh.sensetime.com:12723/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf')}
@font-face /*4*/ {font-family: MathJax_Script-WEB; src: url('http://cluster-proxy.sh.sensetime.com:12723/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf')}
@font-face /*5*/ {font-family: MathJax_Fraktur-WEB; src: url('http://cluster-proxy.sh.sensetime.com:12723/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf')}
@font-face /*6*/ {font-family: MathJax_Fraktur-WEB; font-weight: bold; src: url('http://cluster-proxy.sh.sensetime.com:12723/static/components/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf')}
</style><style type="text/css">.MJXp-script {font-size: .8em}
.MJXp-right {-webkit-transform-origin: right; -moz-transform-origin: right; -ms-transform-origin: right; -o-transform-origin: right; transform-origin: right}
.MJXp-bold {font-weight: bold}
.MJXp-italic {font-style: italic}
.MJXp-scr {font-family: MathJax_Script,'Times New Roman',Times,STIXGeneral,serif}
.MJXp-frak {font-family: MathJax_Fraktur,'Times New Roman',Times,STIXGeneral,serif}
.MJXp-sf {font-family: MathJax_SansSerif,'Times New Roman',Times,STIXGeneral,serif}
.MJXp-cal {font-family: MathJax_Caligraphic,'Times New Roman',Times,STIXGeneral,serif}
.MJXp-mono {font-family: MathJax_Typewriter,'Times New Roman',Times,STIXGeneral,serif}
.MJXp-largeop {font-size: 150%}
.MJXp-largeop.MJXp-int {vertical-align: -.2em}
.MJXp-math {display: inline-block; line-height: 1.2; text-indent: 0; font-family: 'Times New Roman',Times,STIXGeneral,serif; white-space: nowrap; border-collapse: collapse}
.MJXp-display {display: block; text-align: center; margin: 1em 0}
.MJXp-math span {display: inline-block}
.MJXp-box {display: block!important; text-align: center}
.MJXp-box:after {content: " "}
.MJXp-rule {display: block!important; margin-top: .1em}
.MJXp-char {display: block!important}
.MJXp-mo {margin: 0 .15em}
.MJXp-mfrac {margin: 0 .125em; vertical-align: .25em}
.MJXp-denom {display: inline-table!important; width: 100%}
.MJXp-denom > * {display: table-row!important}
.MJXp-surd {vertical-align: top}
.MJXp-surd > * {display: block!important}
.MJXp-script-box > * {display: table!important; height: 50%}
.MJXp-script-box > * > * {display: table-cell!important; vertical-align: top}
.MJXp-script-box > *:last-child > * {vertical-align: bottom}
.MJXp-script-box > * > * > * {display: block!important}
.MJXp-mphantom {visibility: hidden}
.MJXp-munderover, .MJXp-munder {display: inline-table!important}
.MJXp-over {display: inline-block!important; text-align: center}
.MJXp-over > * {display: block!important}
.MJXp-munderover > *, .MJXp-munder > * {display: table-row!important}
.MJXp-mtable {vertical-align: .25em; margin: 0 .125em}
.MJXp-mtable > * {display: inline-table!important; vertical-align: middle}
.MJXp-mtr {display: table-row!important}
.MJXp-mtd {display: table-cell!important; text-align: center; padding: .5em 0 0 .5em}
.MJXp-mtr > .MJXp-mtd:first-child {padding-left: 0}
.MJXp-mtr:first-child > .MJXp-mtd {padding-top: 0}
.MJXp-mlabeledtr {display: table-row!important}
.MJXp-mlabeledtr > .MJXp-mtd:first-child {padding-left: 0}
.MJXp-mlabeledtr:first-child > .MJXp-mtd {padding-top: 0}
.MJXp-merror {background-color: #FFFF88; color: #CC0000; border: 1px solid #CC0000; padding: 1px 3px; font-style: normal; font-size: 90%}
.MJXp-scale0 {-webkit-transform: scaleX(.0); -moz-transform: scaleX(.0); -ms-transform: scaleX(.0); -o-transform: scaleX(.0); transform: scaleX(.0)}
.MJXp-scale1 {-webkit-transform: scaleX(.1); -moz-transform: scaleX(.1); -ms-transform: scaleX(.1); -o-transform: scaleX(.1); transform: scaleX(.1)}
.MJXp-scale2 {-webkit-transform: scaleX(.2); -moz-transform: scaleX(.2); -ms-transform: scaleX(.2); -o-transform: scaleX(.2); transform: scaleX(.2)}
.MJXp-scale3 {-webkit-transform: scaleX(.3); -moz-transform: scaleX(.3); -ms-transform: scaleX(.3); -o-transform: scaleX(.3); transform: scaleX(.3)}
.MJXp-scale4 {-webkit-transform: scaleX(.4); -moz-transform: scaleX(.4); -ms-transform: scaleX(.4); -o-transform: scaleX(.4); transform: scaleX(.4)}
.MJXp-scale5 {-webkit-transform: scaleX(.5); -moz-transform: scaleX(.5); -ms-transform: scaleX(.5); -o-transform: scaleX(.5); transform: scaleX(.5)}
.MJXp-scale6 {-webkit-transform: scaleX(.6); -moz-transform: scaleX(.6); -ms-transform: scaleX(.6); -o-transform: scaleX(.6); transform: scaleX(.6)}
.MJXp-scale7 {-webkit-transform: scaleX(.7); -moz-transform: scaleX(.7); -ms-transform: scaleX(.7); -o-transform: scaleX(.7); transform: scaleX(.7)}
.MJXp-scale8 {-webkit-transform: scaleX(.8); -moz-transform: scaleX(.8); -ms-transform: scaleX(.8); -o-transform: scaleX(.8); transform: scaleX(.8)}
.MJXp-scale9 {-webkit-transform: scaleX(.9); -moz-transform: scaleX(.9); -ms-transform: scaleX(.9); -o-transform: scaleX(.9); transform: scaleX(.9)}
.MathJax_PHTML .noError {vertical-align: ; font-size: 90%; text-align: left; color: black; padding: 1px 3px; border: 1px solid}
</style><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="nbextensions/jupyter-js-widgets/extension" src="./diff_wav_jupyter_files/extension.js.下载"></script><style type="text/css">.MathJax_Display {text-align: center; margin: 0; position: relative; display: block!important; text-indent: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; width: 100%}
.MathJax .merror {background-color: #FFFF88; color: #CC0000; border: 1px solid #CC0000; padding: 1px 3px; font-style: normal; font-size: 90%}
.MathJax .MJX-monospace {font-family: monospace}
.MathJax .MJX-sans-serif {font-family: sans-serif}
#MathJax_Tooltip {background-color: InfoBackground; color: InfoText; border: 1px solid black; box-shadow: 2px 2px 5px #AAAAAA; -webkit-box-shadow: 2px 2px 5px #AAAAAA; -moz-box-shadow: 2px 2px 5px #AAAAAA; -khtml-box-shadow: 2px 2px 5px #AAAAAA; filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true'); padding: 3px 4px; z-index: 401; position: absolute; left: 0; top: 0; width: auto; height: auto; display: none}
.MathJax {display: inline; font-style: normal; font-weight: normal; line-height: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-align: left; text-transform: none; letter-spacing: normal; word-spacing: normal; word-wrap: normal; white-space: nowrap; float: none; direction: ltr; max-width: none; max-height: none; min-width: 0; min-height: 0; border: 0; padding: 0; margin: 0}
.MathJax:focus, body :focus .MathJax {display: inline-table}
.MathJax.MathJax_FullWidth {text-align: center; display: table-cell!important; width: 10000em!important}
.MathJax img, .MathJax nobr, .MathJax a {border: 0; padding: 0; margin: 0; max-width: none; max-height: none; min-width: 0; min-height: 0; vertical-align: 0; line-height: normal; text-decoration: none}
img.MathJax_strut {border: 0!important; padding: 0!important; margin: 0!important; vertical-align: 0!important}
.MathJax span {display: inline; position: static; border: 0; padding: 0; margin: 0; vertical-align: 0; line-height: normal; text-decoration: none; box-sizing: content-box}
.MathJax nobr {white-space: nowrap!important}
.MathJax img {display: inline!important; float: none!important}
.MathJax * {transition: none; -webkit-transition: none; -moz-transition: none; -ms-transition: none; -o-transition: none}
.MathJax_Processing {visibility: hidden; position: fixed; width: 0; height: 0; overflow: hidden}
.MathJax_Processed {display: none!important}
.MathJax_test {font-style: normal; font-weight: normal; font-size: 100%; font-size-adjust: none; text-indent: 0; text-transform: none; letter-spacing: normal; word-spacing: normal; overflow: hidden; height: 1px}
.MathJax_test.mjx-test-display {display: table!important}
.MathJax_test.mjx-test-inline {display: inline!important; margin-right: -1px}
.MathJax_test.mjx-test-default {display: block!important; clear: both}
.MathJax_ex_box {display: inline-block!important; position: absolute; overflow: hidden; min-height: 0; max-height: none; padding: 0; border: 0; margin: 0; width: 1px; height: 60ex}
.MathJax_em_box {display: inline-block!important; position: absolute; overflow: hidden; min-height: 0; max-height: none; padding: 0; border: 0; margin: 0; width: 1px; height: 60em}
.mjx-test-inline .MathJax_left_box {display: inline-block; width: 0; float: left}
.mjx-test-inline .MathJax_right_box {display: inline-block; width: 0; float: right}
.mjx-test-display .MathJax_right_box {display: table-cell!important; width: 10000em!important; min-width: 0; max-width: none; padding: 0; border: 0; margin: 0}
.MathJax .MathJax_HitBox {cursor: text; background: white; opacity: 0; filter: alpha(opacity=0)}
.MathJax .MathJax_HitBox * {filter: none; opacity: 1; background: transparent}
#MathJax_Tooltip * {filter: none; opacity: 1; background: transparent}
@font-face {font-family: MathJax_Blank; src: url('about:blank')}
.MathJax .noError {vertical-align: ; font-size: 90%; text-align: left; color: black; padding: 1px 3px; border: 1px solid}
</style><style type="text/css">/*
* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
/* Override the correction for the prompt area in https://github.com/jupyter/notebook/blob/dd41d9fd5c4f698bd7468612d877828a7eeb0e7a/IPython/html/static/notebook/less/outputarea.less#L110 */
.jupyter-widgets-output-area div.output_subarea {
max-width: 100%;
}
/* Work-around for the bug fixed in https://github.com/jupyter/notebook/pull/2961 */
.jupyter-widgets-output-area > .out_prompt_overlay {
display: none;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-Widget {
box-sizing: border-box;
position: relative;
overflow: hidden;
cursor: default;
}
.p-Widget.p-mod-hidden {
display: none !important;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-CommandPalette {
display: flex;
flex-direction: column;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.p-CommandPalette-search {
flex: 0 0 auto;
}
.p-CommandPalette-content {
flex: 1 1 auto;
margin: 0;
padding: 0;
min-height: 0;
overflow: auto;
list-style-type: none;
}
.p-CommandPalette-header {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.p-CommandPalette-item {
display: flex;
flex-direction: row;
}
.p-CommandPalette-itemIcon {
flex: 0 0 auto;
}
.p-CommandPalette-itemContent {
flex: 1 1 auto;
overflow: hidden;
}
.p-CommandPalette-itemShortcut {
flex: 0 0 auto;
}
.p-CommandPalette-itemLabel {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-DockPanel {
z-index: 0;
}
.p-DockPanel-widget {
z-index: 0;
}
.p-DockPanel-tabBar {
z-index: 1;
}
.p-DockPanel-handle {
z-index: 2;
}
.p-DockPanel-handle.p-mod-hidden {
display: none !important;
}
.p-DockPanel-handle:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: '';
}
.p-DockPanel-handle[data-orientation='horizontal'] {
cursor: ew-resize;
}
.p-DockPanel-handle[data-orientation='vertical'] {
cursor: ns-resize;
}
.p-DockPanel-handle[data-orientation='horizontal']:after {
left: 50%;
min-width: 8px;
transform: translateX(-50%);
}
.p-DockPanel-handle[data-orientation='vertical']:after {
top: 50%;
min-height: 8px;
transform: translateY(-50%);
}
.p-DockPanel-overlay {
z-index: 3;
box-sizing: border-box;
pointer-events: none;
}
.p-DockPanel-overlay.p-mod-hidden {
display: none !important;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-Menu {
z-index: 10000;
position: absolute;
white-space: nowrap;
overflow-x: hidden;
overflow-y: auto;
outline: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.p-Menu-content {
margin: 0;
padding: 0;
display: table;
list-style-type: none;
}
.p-Menu-item {
display: table-row;
}
.p-Menu-item.p-mod-hidden,
.p-Menu-item.p-mod-collapsed {
display: none !important;
}
.p-Menu-itemIcon,
.p-Menu-itemSubmenuIcon {
display: table-cell;
text-align: center;
}
.p-Menu-itemLabel {
display: table-cell;
text-align: left;
}
.p-Menu-itemShortcut {
display: table-cell;
text-align: right;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-MenuBar {
outline: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.p-MenuBar-content {
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
list-style-type: none;
}
.p-MenuBar-item {
box-sizing: border-box;
}
.p-MenuBar-itemIcon,
.p-MenuBar-itemLabel {
display: inline-block;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-ScrollBar {
display: flex;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.p-ScrollBar[data-orientation='horizontal'] {
flex-direction: row;
}
.p-ScrollBar[data-orientation='vertical'] {
flex-direction: column;
}
.p-ScrollBar-button {
box-sizing: border-box;
flex: 0 0 auto;
}
.p-ScrollBar-track {
box-sizing: border-box;
position: relative;
overflow: hidden;
flex: 1 1 auto;
}
.p-ScrollBar-thumb {
box-sizing: border-box;
position: absolute;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-SplitPanel-child {
z-index: 0;
}
.p-SplitPanel-handle {
z-index: 1;
}
.p-SplitPanel-handle.p-mod-hidden {
display: none !important;
}
.p-SplitPanel-handle:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: '';
}
.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle {
cursor: ew-resize;
}
.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle {
cursor: ns-resize;
}
.p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after {
left: 50%;
min-width: 8px;
transform: translateX(-50%);
}
.p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after {
top: 50%;
min-height: 8px;
transform: translateY(-50%);
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-TabBar {
display: flex;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.p-TabBar[data-orientation='horizontal'] {
flex-direction: row;
}
.p-TabBar[data-orientation='vertical'] {
flex-direction: column;
}
.p-TabBar-content {
margin: 0;
padding: 0;
display: flex;
flex: 1 1 auto;
list-style-type: none;
}
.p-TabBar[data-orientation='horizontal'] > .p-TabBar-content {
flex-direction: row;
}
.p-TabBar[data-orientation='vertical'] > .p-TabBar-content {
flex-direction: column;
}
.p-TabBar-tab {
display: flex;
flex-direction: row;
box-sizing: border-box;
overflow: hidden;
}
.p-TabBar-tabIcon,
.p-TabBar-tabCloseIcon {
flex: 0 0 auto;
}
.p-TabBar-tabLabel {
flex: 1 1 auto;
overflow: hidden;
white-space: nowrap;
}
.p-TabBar-tab.p-mod-hidden {
display: none !important;
}
.p-TabBar.p-mod-dragging .p-TabBar-tab {
position: relative;
}
.p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab {
left: 0;
transition: left 150ms ease;
}
.p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab {
top: 0;
transition: top 150ms ease;
}
.p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging {
transition: none;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
.p-TabPanel-tabBar {
z-index: 1;
}
.p-TabPanel-stackedPanel {
z-index: 0;
}
</style><style type="text/css">/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|----------------------------------------------------------------------------*/
</style><style type="text/css">/* Copyright (c) Jupyter Development Team.
* Distributed under the terms of the Modified BSD License.
*/
.jupyter-widgets-disconnected::before {
content: "\f127"; /* chain-broken */
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #d9534f;
padding: 3px;
align-self: flex-start;
}
</style><style type="text/css">/**
* The material design colors are adapted from google-material-color v1.2.6
* https://github.com/danlevan/google-material-color
* https://github.com/danlevan/google-material-color/blob/f67ca5f4028b2f1b34862f64b0ca67323f91b088/dist/palette.var.css
*
* The license for the material design color CSS variables is as follows (see
* https://github.com/danlevan/google-material-color/blob/f67ca5f4028b2f1b34862f64b0ca67323f91b088/LICENSE)
*
* The MIT License (MIT)
*
* Copyright (c) 2014 Dan Le Van
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
:root {
--md-red-50: #FFEBEE;
--md-red-100: #FFCDD2;
--md-red-200: #EF9A9A;
--md-red-300: #E57373;
--md-red-400: #EF5350;
--md-red-500: #F44336;
--md-red-600: #E53935;
--md-red-700: #D32F2F;
--md-red-800: #C62828;
--md-red-900: #B71C1C;
--md-red-A100: #FF8A80;
--md-red-A200: #FF5252;
--md-red-A400: #FF1744;
--md-red-A700: #D50000;
--md-pink-50: #FCE4EC;
--md-pink-100: #F8BBD0;
--md-pink-200: #F48FB1;
--md-pink-300: #F06292;
--md-pink-400: #EC407A;
--md-pink-500: #E91E63;
--md-pink-600: #D81B60;
--md-pink-700: #C2185B;
--md-pink-800: #AD1457;
--md-pink-900: #880E4F;
--md-pink-A100: #FF80AB;
--md-pink-A200: #FF4081;
--md-pink-A400: #F50057;
--md-pink-A700: #C51162;
--md-purple-50: #F3E5F5;
--md-purple-100: #E1BEE7;
--md-purple-200: #CE93D8;
--md-purple-300: #BA68C8;
--md-purple-400: #AB47BC;
--md-purple-500: #9C27B0;
--md-purple-600: #8E24AA;
--md-purple-700: #7B1FA2;
--md-purple-800: #6A1B9A;
--md-purple-900: #4A148C;
--md-purple-A100: #EA80FC;
--md-purple-A200: #E040FB;
--md-purple-A400: #D500F9;
--md-purple-A700: #AA00FF;
--md-deep-purple-50: #EDE7F6;
--md-deep-purple-100: #D1C4E9;
--md-deep-purple-200: #B39DDB;
--md-deep-purple-300: #9575CD;
--md-deep-purple-400: #7E57C2;
--md-deep-purple-500: #673AB7;
--md-deep-purple-600: #5E35B1;
--md-deep-purple-700: #512DA8;
--md-deep-purple-800: #4527A0;
--md-deep-purple-900: #311B92;
--md-deep-purple-A100: #B388FF;
--md-deep-purple-A200: #7C4DFF;
--md-deep-purple-A400: #651FFF;
--md-deep-purple-A700: #6200EA;
--md-indigo-50: #E8EAF6;
--md-indigo-100: #C5CAE9;
--md-indigo-200: #9FA8DA;
--md-indigo-300: #7986CB;
--md-indigo-400: #5C6BC0;
--md-indigo-500: #3F51B5;
--md-indigo-600: #3949AB;
--md-indigo-700: #303F9F;
--md-indigo-800: #283593;
--md-indigo-900: #1A237E;
--md-indigo-A100: #8C9EFF;
--md-indigo-A200: #536DFE;
--md-indigo-A400: #3D5AFE;
--md-indigo-A700: #304FFE;
--md-blue-50: #E3F2FD;
--md-blue-100: #BBDEFB;
--md-blue-200: #90CAF9;
--md-blue-300: #64B5F6;
--md-blue-400: #42A5F5;
--md-blue-500: #2196F3;
--md-blue-600: #1E88E5;
--md-blue-700: #1976D2;
--md-blue-800: #1565C0;
--md-blue-900: #0D47A1;
--md-blue-A100: #82B1FF;
--md-blue-A200: #448AFF;
--md-blue-A400: #2979FF;
--md-blue-A700: #2962FF;
--md-light-blue-50: #E1F5FE;
--md-light-blue-100: #B3E5FC;
--md-light-blue-200: #81D4FA;
--md-light-blue-300: #4FC3F7;
--md-light-blue-400: #29B6F6;
--md-light-blue-500: #03A9F4;
--md-light-blue-600: #039BE5;
--md-light-blue-700: #0288D1;
--md-light-blue-800: #0277BD;
--md-light-blue-900: #01579B;
--md-light-blue-A100: #80D8FF;
--md-light-blue-A200: #40C4FF;
--md-light-blue-A400: #00B0FF;
--md-light-blue-A700: #0091EA;
--md-cyan-50: #E0F7FA;
--md-cyan-100: #B2EBF2;
--md-cyan-200: #80DEEA;
--md-cyan-300: #4DD0E1;
--md-cyan-400: #26C6DA;
--md-cyan-500: #00BCD4;
--md-cyan-600: #00ACC1;
--md-cyan-700: #0097A7;
--md-cyan-800: #00838F;
--md-cyan-900: #006064;
--md-cyan-A100: #84FFFF;
--md-cyan-A200: #18FFFF;
--md-cyan-A400: #00E5FF;
--md-cyan-A700: #00B8D4;
--md-teal-50: #E0F2F1;
--md-teal-100: #B2DFDB;
--md-teal-200: #80CBC4;
--md-teal-300: #4DB6AC;
--md-teal-400: #26A69A;
--md-teal-500: #009688;
--md-teal-600: #00897B;
--md-teal-700: #00796B;
--md-teal-800: #00695C;
--md-teal-900: #004D40;
--md-teal-A100: #A7FFEB;
--md-teal-A200: #64FFDA;
--md-teal-A400: #1DE9B6;
--md-teal-A700: #00BFA5;
--md-green-50: #E8F5E9;
--md-green-100: #C8E6C9;
--md-green-200: #A5D6A7;
--md-green-300: #81C784;
--md-green-400: #66BB6A;
--md-green-500: #4CAF50;
--md-green-600: #43A047;
--md-green-700: #388E3C;
--md-green-800: #2E7D32;
--md-green-900: #1B5E20;
--md-green-A100: #B9F6CA;
--md-green-A200: #69F0AE;
--md-green-A400: #00E676;
--md-green-A700: #00C853;
--md-light-green-50: #F1F8E9;
--md-light-green-100: #DCEDC8;
--md-light-green-200: #C5E1A5;
--md-light-green-300: #AED581;
--md-light-green-400: #9CCC65;
--md-light-green-500: #8BC34A;
--md-light-green-600: #7CB342;
--md-light-green-700: #689F38;
--md-light-green-800: #558B2F;
--md-light-green-900: #33691E;
--md-light-green-A100: #CCFF90;
--md-light-green-A200: #B2FF59;
--md-light-green-A400: #76FF03;
--md-light-green-A700: #64DD17;
--md-lime-50: #F9FBE7;
--md-lime-100: #F0F4C3;
--md-lime-200: #E6EE9C;
--md-lime-300: #DCE775;
--md-lime-400: #D4E157;
--md-lime-500: #CDDC39;
--md-lime-600: #C0CA33;
--md-lime-700: #AFB42B;
--md-lime-800: #9E9D24;
--md-lime-900: #827717;
--md-lime-A100: #F4FF81;
--md-lime-A200: #EEFF41;
--md-lime-A400: #C6FF00;
--md-lime-A700: #AEEA00;
--md-yellow-50: #FFFDE7;
--md-yellow-100: #FFF9C4;
--md-yellow-200: #FFF59D;
--md-yellow-300: #FFF176;
--md-yellow-400: #FFEE58;