-
Notifications
You must be signed in to change notification settings - Fork 2
/
dict_file.txt
1000 lines (1000 loc) · 15.6 KB
/
dict_file.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
it: 35840
method: 18923
model: 16608
approach: 14124
algorithm: 9507
network: 9296
methods: 6571
problem: 4810
features: 4679
models: 4613
system: 3840
algorithms: 3359
images: 2845
graph: 2745
they: 2531
approaches: 2453
networks: 2415
task: 1920
framework: 1892
tasks: 1810
accuracy: 1641
dataset: 1622
g: 1554
cnn: 1386
detection: 1290
image: 1282
architecture: 1246
graphs: 1204
data: 1127
technique: 1113
classification: 1079
twitter: 1014
d: 1001
learning: 991
techniques: 954
neural networks: 932
systems: 881
cnns: 859
nodes: 846
this: 830
problems: 804
object detection: 770
segmentation: 767
representation: 763
clustering: 738
scheme: 718
one: 715
recognition: 709
classifier: 691
applications: 687
neural network: 646
robot: 641
n: 597
them: 590
reinforcement learning: 577
domain adaptation: 563
semantic segmentation: 554
solution: 551
action recognition: 551
edges: 547
datasets: 541
protocol: 540
imagenet: 519
lstm: 517
noise: 510
attacks: 510
tracking: 505
adversarial examples: 496
deep learning: 489
translation: 478
gans: 468
f: 466
policy: 464
representations: 462
ssd: 453
complexity: 452
metric: 444
privacy: 443
feature: 434
dropout: 433
web: 416
c: 412
codes: 407
map: 405
p: 397
code: 363
matrix: 360
robustness: 356
inference: 344
optical flow: 340
mechanism: 339
rnn: 339
transfer learning: 338
machine learning: 337
pose: 333
descriptors: 330
tree: 330
classifiers: 328
k: 325
gan: 325
communities: 324
attack: 321
retrieval: 319
computer vision: 319
decoder: 318
game: 317
layers: 314
face recognition: 312
social media: 312
detector: 311
metrics: 308
r: 308
generator: 302
differential privacy: 301
discriminator: 301
optimization: 299
robots: 298
m: 298
a: 293
mapping: 292
sensors: 288
database: 288
these: 287
encoder: 281
throughput: 280
social networks: 280
descriptor: 277
node: 275
policies: 274
clusters: 271
constraints: 268
rl: 268
distribution: 267
hashing: 266
edge: 264
search: 262
lower bound: 259
v: 253
ranking: 253
function: 252
security: 252
attention: 249
tracker: 249
rules: 249
games: 249
interference: 249
language: 248
matching: 248
computation: 246
architectures: 246
tool: 243
protocols: 242
h: 241
reconstruction: 241
action: 241
pruning: 239
patterns: 239
e: 238
pose estimation: 237
face detection: 237
agents: 235
uncertainty: 235
bound: 234
deep neural networks: 233
rpn: 233
training: 229
segnet: 229
structure: 228
network coding: 227
machine translation: 227
agent: 225
filters: 225
sentiment analysis: 225
layer: 222
supervision: 222
social network: 221
rnns: 221
gpu: 220
recommender systems: 220
localization: 219
schemes: 214
wikipedia: 214
svm: 211
videos: 209
prediction: 209
attributes: 209
shape: 207
appearance: 207
kernel: 206
active learning: 205
embedding: 201
program: 201
gpus: 201
application: 200
transe: 198
lda: 197
tweets: 197
depth: 196
fairness: 196
measure: 194
communication: 191
cloud: 190
ai: 189
analysis: 187
convolutional neural networks: 186
semantics: 185
convergence: 184
modalities: 183
embeddings: 181
other: 179
deepwalk: 178
anomaly detection: 177
vqa: 176
sampling: 175
link prediction: 175
s: 175
iot: 174
dnn: 173
rank: 171
trees: 171
dictionary: 169
3d: 169
recommendation: 167
connectivity: 166
sparsity: 165
generalization: 164
generative model: 164
attention mechanism: 163
person re-identification: 163
cluster: 162
pedestrian detection: 160
saliency: 160
trajectories: 159
compression: 159
malware: 159
planning: 158
semi-supervised learning: 156
hash functions: 156
time series: 155
measures: 155
denoising: 155
nmt: 155
ap: 154
motion: 154
convolutional neural network: 153
gradient: 152
x: 151
convolutional networks: 151
trackers: 151
facebook: 151
lasso: 147
image retrieval: 147
control: 147
routing: 147
annotations: 146
mechanisms: 145
occlusion: 145
cascade: 145
point cloud: 144
pointnet: 143
data structure: 143
rain streaks: 143
pca: 142
generative models: 142
image captioning: 142
capacity: 142
mapreduce: 142
activities: 141
feature selection: 141
loss: 139
strategy: 138
similarity: 137
design: 137
energy consumption: 137
community structure: 137
exploration: 136
visualization: 136
process: 136
adaptation: 136
blur: 136
functions: 135
objects: 135
recurrent neural networks: 135
community detection: 135
delay: 135
collaborative filtering: 134
nmf: 134
music: 134
labeled data: 134
landmarks: 133
controller: 133
depth estimation: 133
relay: 133
r-cnn: 132
image classification: 131
batch normalization: 131
wordnet: 130
sentiment: 130
theory: 129
feedback: 129
outliers: 129
admm: 129
approximation: 129
channel: 128
ransac: 128
strategies: 127
supervised learning: 127
lower bounds: 124
bounds: 123
latency: 123
coverage: 123
illumination: 123
neural machine translation: 123
consensus: 122
sensor: 122
regression: 122
data augmentation: 121
sift: 121
sgd: 120
reward function: 120
point clouds: 120
devices: 120
texture: 120
speech recognition: 119
regularization: 119
speech: 119
normalization: 118
infogan: 118
pnc: 118
heuristics: 117
deep networks: 117
estimator: 117
passwords: 116
threshold: 116
audio: 116
rendezvous: 115
w: 115
random walk: 115
zero-shot learning: 114
unlabeled data: 114
sarcasm: 114
distributions: 113
pagerank: 113
kernels: 112
human pose estimation: 112
style transfer: 112
information: 111
dnns: 111
loss function: 110
detectors: 109
mtl: 109
annotation: 108
knowledge base: 108
metric learning: 108
compressed sensing: 108
logic: 107
estimation: 107
scale: 107
queries: 107
text: 107
surface: 106
youtube: 106
slam: 106
subspace: 105
mutual information: 105
spectral clustering: 105
matrices: 105
conditional random fields: 104
cellular networks: 104
reviews: 104
l: 104
object recognition: 104
programs: 103
ensemble: 103
hate speech: 103
memory: 102
selective search: 102
word embeddings: 102
software: 102
entropy: 101
relation extraction: 101
em: 100
patches: 100
domain: 100
capsule: 100
spam: 100
coding: 99
bitcoin: 99
objective function: 98
caching: 98
node2vec: 98
context: 97
manifold: 97
natural language: 96
bots: 96
quantization: 95
adversarial training: 95
mobile devices: 95
cs: 95
subspaces: 95
matrix factorization: 94
text detection: 94
parsing: 94
planner: 94
actions: 93
tensor: 93
ir: 93
distortion: 93
filter: 93
scheduling: 93
uavs: 93
trust: 93
wireless networks: 92
perturbations: 92
fully convolutional networks: 92
regret: 92
asp: 92
b: 91
3d pose: 91
prior: 91
reliability: 91
quality: 91
scalability: 91
pspnet: 91
tags: 91
video: 90
question answering: 90
fully convolutional network: 90
bias: 90
overfitting: 90
language model: 90
heuristic: 89
precision: 89
tools: 88
summarization: 88
image denoising: 88
regenerating codes: 88
activity recognition: 87
activations: 87
imitation learning: 87
mmd: 87
stochastic geometry: 87
sdn: 87
solutions: 86
formulation: 86
bss: 86
resolution: 85
location: 85
energy: 85
blockchain: 85
advice: 85
channels: 84
optimization problem: 84
t: 84
bounding boxes: 84
rdf: 84
boosting: 84
ner: 84
corpus: 84
generative adversarial networks: 84
ar: 83
storage: 83
density: 83
crf: 83
learning rate: 83
omp: 83
rumor: 83
recurrent neural network: 82
multi-task learning: 82
path: 82
that: 82
competitive ratio: 82
emotions: 82
gestures: 82
estimators: 82
correlation: 82
languages: 81
events: 81
procedure: 81
decomposition: 81
re: 81
vae: 81
cca: 81
greedy algorithm: 81
line: 80
generation: 80
time: 80
gps: 80
age: 80
cloud computing: 80
transh: 80
hmm: 80
ad: 79
contextual information: 79
background: 79
anonymity: 79
tcp: 79
lte: 79
semantic parsing: 78
class: 78
rate: 78
verification: 78
u: 78
gender: 78
app: 78
constraint: 77
pattern: 77
vision: 77
latent space: 77
faces: 77
hashtags: 77
data structures: 77
emotion: 77
methodology: 77
power consumption: 77
binary codes: 77
convergence rate: 76
auction: 76
genetic algorithm: 76
ontologies: 76
autoencoders: 76
reflectance: 76
zsl: 76
sparse representation: 75
data association: 75
space: 75
simulation: 75
modularity: 75
se: 75
feature maps: 74
entities: 74
ne: 74
action detection: 74
maps: 74
components: 73
meta-learning: 73
camera: 73
vector: 73
rain: 73
face images: 73
freebase: 73
internet: 73
nash equilibrium: 72
deep neural network: 72
documents: 72
convolutional layers: 72
navigation: 72
spammers: 72
g.: 71
recall: 71
sparse coding: 71
triplet loss: 71
device: 71
lrr: 71
generative adversarial network: 70
energy efficiency: 70
random forests: 70
work: 70
relationships: 70
abstraction: 70
benchmark: 70
dynamics: 70
approximation algorithm: 70
plane: 69
statistics: 69
convolution: 69
spark: 69
adam: 69
crowdsourcing: 69
sr: 69
video summarization: 69
implicit feedback: 69
dimensionality reduction: 68
ct: 68
hierarchy: 68
uav: 68
place recognition: 68
test: 67
platform: 67
parameters: 67
local features: 67
relations: 67
approximation algorithms: 67
activity: 67
symmetry: 67
y: 67
chord: 67
unsupervised learning: 66
cost function: 66
gradient descent: 66
de: 66
apps: 66
upper bound: 66
yolo: 65
dtw: 65
game theory: 65
3d shape: 65
grid: 65
color: 65
rotation: 65
transformer: 65
cost: 65
da: 64
hardware: 64
qa: 64
benchmarks: 64
re-id: 64
anomalies: 64
image segmentation: 64
alignment: 64
synthetic data: 64
regions: 64
motion planning: 64
t-sne: 64
grammar: 63
super-resolution: 63
gradients: 63
optical flow estimation: 63
cpu: 63
robotics: 63
ica: 63
outage probability: 63
convnet: 62
manipulation: 62
image-to-image translation: 62
superpixels: 62
diversity: 62
pomdp: 62
pomdps: 62
subgraph: 61
ldp: 61
dense trajectories: 61
convnets: 61
k-means: 61
invariants: 61
occlusions: 61
registration: 61
paths: 61
fast r-cnn: 61
stability: 61
mdp: 61
sinr: 61
notifications: 61
implementation: 60
sensor networks: 60
training data: 60
language modeling: 60
deep network: 60
autonomous driving: 60
catastrophic forgetting: 60
dqn: 60
signals: 60
gru: 60
mi: 60
perturbation: 60
pedestrians: 60
distant supervision: 60
gp: 60
cover time: 60
java: 59
authentication: 59
fcn: 59
decoding: 59
overhead: 59
q: 59
computational complexity: 58
works: 58
random walks: 58
grasping: 58
data mining: 58
surf: 58
saliency detection: 58
srgan: 58
ontology: 58
mil: 58
bittorrent: 58
i: 58
parser: 57
topology: 57
learning algorithm: 57
forest: 57
interaction: 57
viewpoint: 57
dbscan: 57
es: 57
priors: 57
loss functions: 57
gms: 57
power control: 57
spns: 57
graph matching: 57
erasure codes: 57
weights: 56
encryption: 56
faster r-cnn: 56
factorization: 56
ga: 56
topic models: 56
lstms: 56
subspace clustering: 56
norms: 56
squeezenet: 55
query: 55
camera motion: 55
taxonomy: 55
mcts: 55
congestion: 55
structures: 55
transformations: 55
topic model: 55
region proposal network: 55
operations: 55
adversarial loss: 55
sample complexity: 55
amp: 55
saliency maps: 55
modules: 55
online social networks: 55
lbp: 54
bounding box: 54
object proposals: 54
visual tracking: 54
hash codes: 54
model checking: 54
word representations: 54
video captioning: 54
interface: 54
si: 54
qoe: 54
diffusion: 54
degree distribution: 54
molecular communication: 54
locality: 53
information retrieval: 53
polynomial time: 53
knowledge: 53
topic modeling: 53
speed: 53
module: 53
keywords: 53
3d models: 53
performance: 53
combinatorial auctions: 53
salient object detection: 53
controllers: 53
mst: 53
negation: 53
aggregates: 53
centrality: 53
qos: 53
broadcasting: 53
recovery: 52
depth maps: 52
he: 52
wireless sensor networks: 52
transfer: 52
solver: 52
googlenet: 52
defenses: 52
subgraphs: 52
repair: 52
cooperation: 52
face image: 52
android: 52
construction: 52
pixels: 51
email: 51
processes: 51
latent dirichlet allocation: 51
policy search: 51
local minima: 51
grasps: 51
extension: 51
factors: 51
wireless network: 51
coverage probability: 51
hashing methods: 51
transform: 51
cro: 51
probabilistic databases: 51
links: 50
densenet: 50
hand: 50
english: 50
dbpedia: 50
two: 50
visual question answering: 50
community: 50
video segmentation: 50
lsh: 50
shortest path: 50
xml: 50
ssc: 50
pegs: 50
crfs: 49
visualizations: 49
gn: 49
feature representation: 49
domains: 49
mpi: 49
sketch: 49
latent variables: 49
dropconnect: 49
svrg: 49
autoencoder: 49
hmms: 49
graphical model: 49
phishing: 49
osns: 49
dic: 48
face: 48
nns: 48
bandwidth: 48
distance: 48
search engines: 48
running time: 48
lattice: 48
eigenvectors: 48
lle: 48
src: 48
emotion recognition: 47
search space: 47
fpn: 47
deep reinforcement learning: 47
transformation: 47
surfaces: 47
access control: 47
object detectors: 47
cameras: 47
chinese word segmentation: 47
gaze: 47
clustering algorithms: 47
rbm: 47
resource allocation: 47
lgmd: 47
tsp: 47
rs: 46
orientation: 46
network structure: 46
os: 46
recommender system: 46
side information: 46
distillation: 46
natural images: 46
operators: 46
approximation ratio: 46
evolution: 46
services: 46
redundancy: 46
semantic space: 46
net: 46
broadcast: 46
relation: 46
flownet: 46
vulnerabilities: 46
ic: 46
beamforming: 46
mobile device: 46
logic programming: 46
relay channel: 46
random search: 45
optimization problems: 45
gesture recognition: 45
cascades: 45
feature extraction: 45
histograms: 45
planar graphs: 45
auctions: 45
visual features: 45
graph cuts: 45
online learning: 45
dns: 45
hybrid systems: 45
vms: 45
neural net: 44
csp: 44
coordination: 44
wgan: 44
hypergraph: 44
bert: 44
by: 44
wsns: 44
cache: 44
representation learning: 44
bayesian optimization: 44
vectors: 44
nash equilibria: 44
network slicing: 44
dynamic programming: 44
operator: 44
adversarial attacks: 44
iot devices: 44
diameter: 44
eigenvalues: 44
edge detection: 44
botnets: 44
polygon: 44
pooling: 43
im: 43
nn: 43
enet: 43
alexnet: 43
principal component analysis: 43
content: 43
ssh: 43
nlp: 43
equilibrium: 43
rule: 43
spanner: 43
cps: 43
barrier coverage: 43
power: 43
openflow: 43
submodular functions: 43
aus: 43
qaoa: 43
pir: 43
sgx: 42
adversary: 42
asr: 42
batch size: 42
parallelism: 42
pipeline: 42
sat: 42
crossover: 42
concepts: 42
sketches: 42
residual networks: 42
stochastic gradient descent: 42
receptive field: 42
fpga: 42
cell: 42
disk: 42
nuclear norm: 42
sentiment classification: 42
saliency prediction: 42
communication complexity: 42
smart grid: 42
random graph: 42
spectrum sensing: 42
location privacy: 42
su: 42
termination: 42
planar graph: 41
kalman filter: 41
spatial transformer: 41
markov chain: 41
stereo: 41
modality: 41
value function: 41
safety: 41
style: 41
few-shot learning: 41
studies: 41
base stations: 41
personality: 41
svms: 41
ec: 41
center loss: 41
simulator: 41
spanning tree: 41
wsn: 41
wsd: 41
optimizations: 40
google: 40
encrypted data: 40
ground truth: 40
generators: 40
smt: 40
databases: 40
recommendations: 40
ptas: 40
ctpn: 40
big data: 40
caffe: 40
ep: 40
characters: 40
object tracking: 40
pso: 40
road network: 40
tweet: 40
texture synthesis: 40
mdps: 40
sa: 40
capsules: 40
github: 40
feature space: 40
synthetic images: 40
deblurring: 40
distance metric: 40
sensing: 40
stack overflow: 40
load balancing: 40
blur kernel: 40
decision tree: 39
probability distribution: 39
energy function: 39
server: 39
retinanet: 39
snr: 39