-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnlab_phrases_with_embeddings.txt
5282 lines (5282 loc) · 109 KB
/
nlab_phrases_with_embeddings.txt
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
abc conjecture
abductive reasoning
abelian category
abelian group
abelian model category
abelian sheaf
abelian sheaf cohomology
abelian subcategory
abelian variety
abelianization
abrupt category
absolute cohomology
absolute colimit
absolute conclusion
absolute differential form
absolute extensor
absolute idealism
absolute pushout
absolute retract
absolute value
absolutely continuous function
absolutely continuous measure
absolutely convex subset
absorbing subset
abstract circle
abstract elementary class
abstract general
abstract model theory
abstract scattering theory
abstraction
acceleration
accessible category
accessible functor
accessible model category
accessible monad
accessible weak factorization system
action
action functional
action groupoid
action monad
action of a category on a set
acyclic assembly lemma
acyclic fibration
acyclic group
acyclic object
additive analytic geometry
additive and abelian categories
additive category
additive envelope
additive functor
additive monad
adequate equivalence relation
adhesive category
adiabatic switching
adic noetherian ring
adic residual
adic space
adinkra
adjoint
adjoint action
adjoint bundle
adjoint equivalence
adjoint functor
adjoint functor theorem
adjoint lifting theorem
adjoint logic
adjoint modality
adjoint monad
adjoint morphism
adjoint operator
adjoint quadruple
adjoint representation
adjoint string
adjoint triangle theorem
adjoint triple
adjunct
adjunction
admin
admissible rule
admissible subcategory
advanced and retarded causal propagators
affiliated operator
affine algebra
affine connection
affine group
affine line
affine localization
affine logic
affine modality
affine morphism
affine scheme
affine space
affine symplectic group
affine variety
age
aleph
algebra
algebra extension
algebra for an endomorphism
algebra of functions
algebra over a monad
algebra over an operad
algebra spectrum
algebraic analysis
algebraic approaches to differential calculus
algebraic category
algebraic cobordism
algebraic correspondences
algebraic curve
algebraic cycle
algebraic definition of higher categories
algebraic dynamics
algebraic effect
algebraic equation
algebraic extension
algebraic function
algebraic fundamental group
algebraic geometry
algebraic group
algebraic homotopy
algebraic integer
algebraic lattice
algebraic line bundle
algebraic model category
algebraic model for modal logics
algebraic number
algebraic number theory
algebraic set theory
algebraic small object argument
algebraic space
algebraic stack
algebraic structure
algebraic surface
algebraic theories in functional analysis
algebraic theory
algebraic topology
algebraic triangulated category
algebraic variety
algebraic vector bundle
algebraic weak factorization system
algebraically closed field
algebraically compact category
algebraically injective object
algorithm
allegory
almost connected topological group
almost equality
almost function
almost module
almost open subspace
almost scheme
alpha particle
alternating group
alternating multifunction
alternating representation
alternative algebra
alternative experimental definition of commutative diagram
amalgamation property
amalgamation theory
amazing right adjoint
ambidextrous adjunction
ambient category
amenable category
amenable topological groupoid
ample sheaf
amplitude
analogy
analyser
analysis
analytic affine line
analytic completion of a ring
analytic continuation
analytic function
analytic geometry
analytic langlands program
analytic manifold
analytic motives
analytic motivic homotopy theory
analytic number theory
analytic philosophy
analytic space
analytic spectrum
analytic torsion
analytic variety
analytic versus synthetic
analytical index
angle
angular momentum
angular velocity
annulus
anodyne morphism
anomalous diffusion
anomalous magnetic moment
anomaly cancellation
antecedent
antichain
antiparticle
antisymmetric relation
apartness relation
apartness space
application of topology
applicative functor
applied category theory
applied mathematics
approach space
approximate fibration
approximation
approximation of the identity
arc space
archetypal example
archimedean field
archimedean valued field
arctangent
area
arithmetic
arithmetic and noncommutative geometry
arithmetic cryptography
arithmetic curve
arithmetic differential geometry
arithmetic genus
arithmetic geometry
arithmetic jet space
arithmetic scheme
arithmetic topology
arithmetic variety
arithmetic zeta function
arity class
arity space
arrangement of hyperplanes
arrow
arrow category
arrow structure
artinian ring
assembly map
associated bundle
associated graded object
associated graded ring
associated graded vector space
associative magma
associative operad
associative ring spectrum
associative submanifold
associative unital algebra
associativity
asymmetric relation
asymptotic boundary
asymptotic dimension
asymptotic expansion
asymptotic freedom
asymptotic isometry
asymptotic safety
asymptotically flat spacetime
asymptotics
asynchronous automaton
atlas
atom
atom physics
atomic category
atomic geometric morphism
atomic number
atomic site
atomic spectrum
atomic topos
augmentation
augmentation ideal
augmented algebra
augmented simplicial set
augmented virtual double category
automaton
automorphic form
automorphism
automorphism of a vertex operator algebra
automorphism of free group
auxiliary field
axiom
axiom of choice
axiom of determinacy
axiom of extensionality
axiom of foundation
axiom of infinity
axiom of materialization
axiom of multiple choice
axiom of pairing
axiom of replacement
axiom of separation
axiom of union
axioms of plane geometry
axion
axion inflation
background field
background field formalism
balanced category
balanced monoidal category
balanced set
ball
bar and cobar construction
bar construction
barreled topological vector space
barycenter
baryon
baryon current
baryon number
base
base change
base change spectral sequence
base topos
basic complex line bundle on the 2-sphere
basic differential form
basic localizer
basic problems of algebraic topology
basis
basis in functional analysis
basis of a free module
basis of a vector space
basis theorem
becoming
behavior
being
beta decay
beta function
biased definition
biconditional
bicycle
big class
big site
bijection
bijective on objects functor
bijective proof
bilinear form
bilinear map
bimodule
bimodule category
bimodule object
binary cyclic group
binary digit
binary function
binary linear code
binary morphism
binary number
binary pulsar
binomial theorem
biology
bipartite graph
birational geometry
birational map
bitcoin
bivector
black body radiation
black brane
black hole
black hole firewall problem
black hole information paradox
black hole radiation
black holes in string theory
black ring
black string
blob homology
block design
blueprint
body
books about string theory
books and reviews in mathematical physics
books in algebraic geometry
boolean domain
boolean function
boolean space
boolean-valued function
boost
boson
boson star
bosonic modality
bosonic string
bosonic string theory
bottom
bottom quark
bottom-up and top-down model building
bound state
boundary
boundary condition
boundary conformal field theory
boundary field theory
boundary of a simplex
bounded chain complex
bounded function
bounded geometric morphism
bounded linear logic
bounded operator
bounded set
box topology
bra-ket
bracket type
braid category
braid group
braid group statistics
braid lemma
braided geometry
braided monoidal category
braided monoidal functor
braided monoidal natural transformation
braided object
braiding
branched cover
branched manifold
branching
brane
brane intersection
brane scan
brave new algebra
bridge number
building
bulk
bulk field theory
bullet cluster
bump function
bunched logic
bundle
bundle gerbe
bundle gerbe module
butterfly
cactus language
calculus
calculus of constructions
calculus of fractions
calibration
canonical
canonical bundle
canonical commutation relation
canonical extension
canonical form
canonical formula of myth
canonical model structure
canonical model structure on groupoids
canonical momentum
canonical presentation
canonical resolution
canonical sheaf
canonical topology
canonical transformation
cap product
carbon
cardinal arithmetic
cardinal number
carrying
cartesian category
cartesian closed category
cartesian closed enriched category
cartesian closed functor
cartesian closed model category
cartesian differential category
cartesian functor
cartesian logic
cartesian monad
cartesian monoidal category
cartesian object
cartesian power
cartesian product
cartesian reflector
cartesian site
cartesian space
cartesian square
cartographic group
catastrophe
categorial grammar
categorical algebra
categorical analysis
categorical compositional distributional semantics
categorical distribution
categorical model of dependent types
categorical resolution of singularities
categorical semantics
categorical shape theory
categorical trace
categorical wreath product
category
category algebra
category of being
category of chain complexes
category of covering spaces
category of cubes
category of descent data
category of elements
category of factorizations
category of fractions
category of generalized elements
category of group-based universal algebras
category of local models
category of monoids
category of open subsets
category of operators
category of partial equivalence relations
category of representations
category of sheaves
category of simple graphs
category of simple graphs and some graph theory
category of simplices
category over a category
category over an operad
category theory
category theory vs order theory
category with class structure
category with duals
category with translation
category with weak equivalences
causal additivity
causal complement
causal cone
causal index set
causal locality
causal order
causal perturbation theory
causal propagator
causal structure
causally closed subset
causally local net of observables
ceasing
celestial sphere
cell complex
cell object
cell spectrum
cellular approximation theorem
cellular homology
cellular map
cellular model
cellular model category
cellular set
center
center of an additive category
central character
central charge
central extension
central limit theorem
central product of groups
central simple algebra
centralizer
centrally extended groupoid
certified programming
chain
chain complex
chain complex in super vector spaces
chain homology and cohomology
chain homotopy
chain homotopy equivalence
chain map
chain rule
change of enriching category
change of integration variables
change of rings theorem
chaos
chaotic cosmic inflation
character
character of a linear representation
characteristic
characteristic class
characteristic class of a linear representation
characteristic class of a structure
characteristic element
characteristic element of a bilinear form
characteristic function
characteristic ideal
characteristic polynomial
characteristic series
characteristic variety
characteristic zero
characters are cyclotomic integers
charge
charge conjugation matrix
charge of a conserved current
charge sector
charged current
charm quark
chemical element
chemistry
chiral algebra
chiral anomaly
chiral differential operator
chiral fermion
chiral partner
chiral perturbation theory
chiral ring
choice function
choice object
choice operator
choice sequence
chord diagram
chord diagram > arc diagram
chord diagram > arc diagram latin
chord diagram > chord diagram
chord diagram > chord diagram 2a
chord diagram > chord diagram 2b
chord diagram > chord diagram unlabelled
chromatic convergence theorem
chromatic homotopy theory
chromatic localization
chromatic spectral sequence
chromatic tower
circle
circle action
circle bundle
circle group
circle principal bundle
circled set
class equation
class field theory
class function
class number
class number formula
class of adapted objects
classical anomaly
classical context
classical double copy
classical electrodynamics
classical field theory
classical inverse scattering method
classical limit
classical logic
classical mathematics
classical mechanics
classical model structure on pointed topological spaces
classical model structure on simplicial sets
classical model structure on topological spaces
classical observable
classical physics
classical state
classical triangulation
classification of finite simple groups
classifying morphism
classifying space
classifying topos
classifying topos for the theory of objects
cleavage
cleft extension
clique
clone
closed category
closed cover
closed differential form
closed form
closed functor
closed graph theorem
closed immersion of schemes
closed injections are embeddings
closed intervals are compact topological spaces
closed manifold
closed map
closed monoidal category
closed monoidal category module
closed monoidal deformation retract
closed monoidal structure on sheaves
closed morphism
closed natural transformation
closed point
closed subspace
closed subspaces of compact spaces are compact
closed time-like curve
closure algebra
closure operator
club
cluster algebra
cluster decomposition
clutching construction
coalgebra
coalgebra of the real interval
coarse structure
coarse topology
cobordism
cobordism category
cobordism cohomology theory
cobordism hypothesis
cobordism theory
cobordism theory determining homology theory
cochain
cochain complex
cochain on a simplicial set
cocycle
cocycle space
code loop
codimension
coding theory
codomain fibration
coefficient
coercion
cofinality
coherence law
coherence space
coherence theorem
coherence theorem for braided monoidal categories
coherence theorem for closed symmetric monoidal categories
coherence theorem for monoidal categories
coherence theorem for symmetric monoidal categories
coherent category
coherent cohomology
coherent coverage
coherent functor
coherent logic
coherent module
coherent object
coherent ring
coherent sheaf
coherent space
coherent state
coherent state in geometric quantization
coherent topos
cohesive
cohesive homotopy type theory
cohesive site
cohesive topos
cohomological descent
cohomological dimension
cohomological field theory
cohomological functor
cohomological induction
cohomological integration
cohomology
cohomology group
cohomology in a local net of observables
cohomology jump loci
cohomology localization
cohomology of a category
cohomology of dynamical systems
cohomology operation
cohomology ring
cohomology with constant coefficients
cokernel
cokernel pair
colimit
colimits in categories of algebras
colimits of normal spaces
collar neighbourhood theorem
collection
collective field theory
collineation
color branes and flavor branes
color charge
colorable knot
colored symmetric sequence
colour superconductivity
combinatorial design
combinatorial geometry
combinatorial group theory
combinatorial homotopy
combinatorial map
combinatorial model category
combinatorial representation theory
combinatorial simplicial model category
combinatorial spectrum
combinatorial weak factorization system
combinatorics
combinatory logic
comma category
comma double category
comma object
commutative algebra
commutative algebraic theory
commutative diagram
commutative localization
commutative magma
commutative monad
commutative monoid
commutative monoid in a symmetric monoidal category
commutative monoid in a symmetric monoidal model category
commutative monoid operad
commutative monoidal category
commutative square
commutative triangle
commutativity of limits and colimits
commutator
commutator subgroup
comoving time
compact closed category
compact double category
compact element
compact element in a lattice
compact object
compact operator
compact ordered space
compact self-adjoint operator
compact space
compact spaces equivalently have converging subnet of every net
compact support
compact symplectic group
compact topological group
compactification
compactly generated model category
compactly generated topological space
compactly generated triangulated category
compactly supported cohomology
compactly supported distribution
compactness and stable closure
compactness theorem
companion pair
comparison
comparison lemma
comparison map
comparison theorem
compatible localization
complement
complemented lattice
complemented subobject
complete algebraic variety
complete category
complete field
complete lattice
complete normed group
complete small category
complete space
complete spread
complete theory
complete topological vector space
completely distributive lattice
completely prime filter
completeness theorem
completing the square
completion
completion monad
completion of a module
completion of a ring
completion theorem for complex cobordism cohomology
complex
complex analysis
complex analytic space
complex analytic stack
complex analytic topology
complex cohomology
complex connection
complex curve
complex geometry
complex line
complex manifold
complex n-dimensional space
complex number
complex of groups
complex orbifold
complex oriented cohomology theory
complex path integral
complex phase
complex projective 3-space
complex projective plane
complex projective space
complex structure
complex surface
complex system
complex torus
complex variety
complex vector bundle
complex vector space
complex volume
complexification
complexity theory
composite system
composition
composition algebra
composition law for factorizations
composition operation
composition series
compositionality
compositions in cubical sets
computability
computable analysis
computable function
computable physics
computable real number
computable set
computation
computational complexity and physics
computational consistency
computational homological algebra
computational physics
computational topology
computational trinitarianism
computational type theory
computer science
conal manifold
concept with an attitude
conceptual completeness
concordance
concrete category
concrete object
concrete sheaf
concrete site
concrete structure
concrete subobject
concurrency theory
condensate
condensed mathematics
condensed set
conditional convergence
conditional expectation
conductor
cone
cone morphism
configuration scheme
configuration space
configuration space of points
confinement
confluent category
conformal anomaly
conformal block
conformal bootstrap
conformal cobordism category
conformal compactification
conformal connection
conformal field theory
conformal geometry
conformal gravity
conformal group
conformal invariance and scale invariance
conformal map
conformal net
conformal transformation
conformally flat manifold
congruence
congruence in geometry
congruence subgroup
conic section
conical limit
conical space
conjecture
conjugacy class
conjugate subgroup
conjugate transpose matrix
conjugation action
conjunction
connected category
connected filtered space
connected graph
connected homotopy type
connected limit
connected object
connected relation
connected site
connected space
connected sum
connected topos
connecting homomorphism
connection
connection for a coring
connection for a differential graded algebra
connection in noncommutative geometry
connection on a bundle
connection on a bundle gerbe
connection on a cubical set
connection on a double category
connection on a gerbe
connection on a vector bundle
connective
connective chain complex
connective cover
connective spectrum
consequent
conservation law
conservative functor
conservative morphism
conserved current
consistency
consistent histories approach to quantum mechanics
constant function
constant functor
constant morphism
constant presheaf
constant sheaf
constant stack
constituent quark model
constructible set
constructible sheaf
constructible universe
construction in philosophy
constructive analysis
constructive mathematics
constructive model structure on simplicial sets
constructive quantum field theory
constructive set theory
contact manifold
contents
contents of contents
context
context extension
context-free grammar
continuation monad
continued fraction
continuous algebra
continuous category
continuous cohomology
continuous functor
continuous images of compact spaces are compact
continuous logic
continuous map
continuous metric space valued function on compact metric space is uniformly continuous
continuous multilinear operator
continuous poset
continuous predicate
continuous space
continuous truth
continuous étale cohomology
continuously differentiable map
continuum
continuum hypothesis
continuum mechanics
contractible chain complex
contractible space
contractible type