-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
591 lines (283 loc) · 18.3 KB
/
atom.xml
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>RokoBasilisk's Blog</title>
<link href="/atom.xml" rel="self"/>
<link href="http://yoursite.com/"/>
<updated>2020-08-25T02:30:15.661Z</updated>
<id>http://yoursite.com/</id>
<author>
<name>Rokosnake</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>利用Semaphore实现一个限流器</title>
<link href="http://yoursite.com/2020/08/25/%E5%88%A9%E7%94%A8Semaphore%E5%AE%9E%E7%8E%B0%E4%B8%80%E4%B8%AA%E9%99%90%E6%B5%81%E5%99%A8/"/>
<id>http://yoursite.com/2020/08/25/%E5%88%A9%E7%94%A8Semaphore%E5%AE%9E%E7%8E%B0%E4%B8%80%E4%B8%AA%E9%99%90%E6%B5%81%E5%99%A8/</id>
<published>2020-08-25T01:32:36.525Z</published>
<updated>2020-08-25T02:30:15.661Z</updated>
<summary type="html">
<h1 id="利用Semaphore实现一个限流器"><a href="#利用Semaphore实现一个限流器" class="headerlink"
</summary>
<category term="Concurrent Programming" scheme="http://yoursite.com/categories/Concurrent-Programming/"/>
<category term="并发" scheme="http://yoursite.com/tags/%E5%B9%B6%E5%8F%91/"/>
</entry>
<entry>
<title>Lock and Condition</title>
<link href="http://yoursite.com/2020/08/24/Lock%20and%20Condition/"/>
<id>http://yoursite.com/2020/08/24/Lock%20and%20Condition/</id>
<published>2020-08-24T10:28:59.834Z</published>
<updated>2020-08-25T01:18:22.517Z</updated>
<summary type="html">
<h1 id="Lock-and-Condition"><a href="#Lock-and-Condition" class="headerlink" title="Lock and Condition"></a>Lock and Condition</h1><h2
</summary>
<category term="Concurrent Programming" scheme="http://yoursite.com/categories/Concurrent-Programming/"/>
<category term="并发" scheme="http://yoursite.com/tags/%E5%B9%B6%E5%8F%91/"/>
</entry>
<entry>
<title>Java线程</title>
<link href="http://yoursite.com/2020/08/23/Java%E7%BA%BF%E7%A8%8B/"/>
<id>http://yoursite.com/2020/08/23/Java%E7%BA%BF%E7%A8%8B/</id>
<published>2020-08-23T13:57:01.498Z</published>
<updated>2020-08-24T07:24:22.021Z</updated>
<summary type="html">
<h1 id="Java-线程的生命周期"><a href="#Java-线程的生命周期" class="headerlink" title="Java 线程的生命周期"></a>Java 线程的生命周期</h1><blockquote>
<p>在 Java
</summary>
<category term="Concurrent Programming" scheme="http://yoursite.com/categories/Concurrent-Programming/"/>
<category term="并发" scheme="http://yoursite.com/tags/%E5%B9%B6%E5%8F%91/"/>
</entry>
<entry>
<title>管程-并发编程的万能钥匙</title>
<link href="http://yoursite.com/2020/08/22/%E7%AE%A1%E7%A8%8B-%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E7%9A%84%E4%B8%87%E8%83%BD%E9%92%A5%E5%8C%99/"/>
<id>http://yoursite.com/2020/08/22/%E7%AE%A1%E7%A8%8B-%E5%B9%B6%E5%8F%91%E7%BC%96%E7%A8%8B%E7%9A%84%E4%B8%87%E8%83%BD%E9%92%A5%E5%8C%99/</id>
<published>2020-08-22T15:41:48.425Z</published>
<updated>2020-08-23T13:56:02.767Z</updated>
<summary type="html">
<h1 id="管程-并发编程的万能钥匙"><a href="#管程-并发编程的万能钥匙" class="headerlink" title="管程-并发编程的万能钥匙"></a>管程-并发编程的万能钥匙</h1><blockquote>
<p>Java 语言在 1.5
</summary>
<category term="Concurrent Programming" scheme="http://yoursite.com/categories/Concurrent-Programming/"/>
<category term="并发" scheme="http://yoursite.com/tags/%E5%B9%B6%E5%8F%91/"/>
</entry>
<entry>
<title>The theory of concurrent programming</title>
<link href="http://yoursite.com/2020/08/22/Concurrent%20programming/"/>
<id>http://yoursite.com/2020/08/22/Concurrent%20programming/</id>
<published>2020-08-22T08:46:07.142Z</published>
<updated>2020-08-22T11:14:51.483Z</updated>
<summary type="html">
<h1 id="The-theory-of-concurrent-programming"><a href="#The-theory-of-concurrent-programming" class="headerlink" title="The theory of
</summary>
<category term="Feedback" scheme="http://yoursite.com/categories/Feedback/"/>
<category term="并发" scheme="http://yoursite.com/tags/%E5%B9%B6%E5%8F%91/"/>
</entry>
<entry>
<title>The theory of concurrent programming</title>
<link href="http://yoursite.com/2020/08/20/The%20theory%20of%20concurrent%20programming/"/>
<id>http://yoursite.com/2020/08/20/The%20theory%20of%20concurrent%20programming/</id>
<published>2020-08-20T07:28:25.090Z</published>
<updated>2020-08-23T04:05:56.444Z</updated>
<summary type="html">
<h1 id="The-theory-of-concurrent-programming"><a href="#The-theory-of-concurrent-programming" class="headerlink" title="The theory of
</summary>
<category term="Concurrent Programming" scheme="http://yoursite.com/categories/Concurrent-Programming/"/>
<category term="并发" scheme="http://yoursite.com/tags/%E5%B9%B6%E5%8F%91/"/>
</entry>
<entry>
<title>Playground-of-sort-algorithm</title>
<link href="http://yoursite.com/2020/07/15/Playground%20of%20sort%20algorithm/"/>
<id>http://yoursite.com/2020/07/15/Playground%20of%20sort%20algorithm/</id>
<published>2020-07-15T01:23:55.250Z</published>
<updated>2020-07-15T02:02:56.674Z</updated>
<summary type="html">
<h1 id="排序算法"><a href="#排序算法" class="headerlink"
</summary>
<category term="Feedback" scheme="http://yoursite.com/categories/Feedback/"/>
<category term="面试总结" scheme="http://yoursite.com/tags/%E9%9D%A2%E8%AF%95%E6%80%BB%E7%BB%93/"/>
</entry>
<entry>
<title>Advance-Data-Structure</title>
<link href="http://yoursite.com/2020/07/13/Advance%20Data%20Structure/"/>
<id>http://yoursite.com/2020/07/13/Advance%20Data%20Structure/</id>
<published>2020-07-13T01:55:59.629Z</published>
<updated>2020-07-14T03:04:16.945Z</updated>
<summary type="html">
<blockquote>
<p>总结一部分数据结构</p>
</blockquote>
<h2 id="优先队列"><a href="#优先队列" class="headerlink" title="优先队列"></a>优先队列</h2><h3 id="特点"><a
</summary>
<category term="Feedback" scheme="http://yoursite.com/categories/Feedback/"/>
<category term="面试总结" scheme="http://yoursite.com/tags/%E9%9D%A2%E8%AF%95%E6%80%BB%E7%BB%93/"/>
</entry>
<entry>
<title>Combine RNN with Neural ODEs</title>
<link href="http://yoursite.com/2020/05/13/Combine-RNN-with-NeuralODES/"/>
<id>http://yoursite.com/2020/05/13/Combine-RNN-with-NeuralODES/</id>
<published>2020-05-13T14:59:04.228Z</published>
<updated>2020-05-13T15:04:58.772Z</updated>
<summary type="html">
<center><font size=5><b>Intro to Neural ODEs</b></font></center>
<div align=right><a href="https://medium.com/@abaietto5297"
</summary>
<category term="Machine Learning" scheme="http://yoursite.com/categories/Machine-Learning/"/>
<category term="ODEs" scheme="http://yoursite.com/tags/ODEs/"/>
</entry>
<entry>
<title>Model Fusion</title>
<link href="http://yoursite.com/2020/04/04/Model-Fusion/"/>
<id>http://yoursite.com/2020/04/04/Model-Fusion/</id>
<published>2020-04-04T07:38:19.238Z</published>
<updated>2020-04-04T07:40:28.650Z</updated>
<summary type="html">
<p><strong>Quote:</strong></p>
<p>&ensp;<a href="https://rocksnake.github.io/2020/03/31/Modeling%20and%20tuning/" target="_blank"
</summary>
<category term="Data Mining" scheme="http://yoursite.com/categories/Data-Mining/"/>
<category term="模型融合" scheme="http://yoursite.com/tags/%E6%A8%A1%E5%9E%8B%E8%9E%8D%E5%90%88/"/>
</entry>
<entry>
<title>Modeling and tuning</title>
<link href="http://yoursite.com/2020/03/31/Modeling-and-tuning/"/>
<id>http://yoursite.com/2020/03/31/Modeling-and-tuning/</id>
<published>2020-03-31T08:28:20.153Z</published>
<updated>2020-03-31T08:30:19.119Z</updated>
<summary type="html">
<p>在XGBoost、LightGBM、CatBoost三个模型介绍与参数调优的基础上,进一步拓展模型类型和参数调优方法。</p>
<blockquote>
<p><a
</summary>
<category term="Data Mining" scheme="http://yoursite.com/categories/Data-Mining/"/>
<category term="Model&tuning" scheme="http://yoursite.com/tags/Model-tuning/"/>
</entry>
<entry>
<title>Boosting Tuning</title>
<link href="http://yoursite.com/2020/03/27/Boost-Tuning/"/>
<id>http://yoursite.com/2020/03/27/Boost-Tuning/</id>
<published>2020-03-27T09:43:42.220Z</published>
<updated>2020-07-14T03:14:43.082Z</updated>
<summary type="html">
<div id="Boosting">Boosting Tuning</div>
<ol>
<li><a href="#xgb">XGBoost;</a></li>
<li><a href="#lgb">LightGBM;</a></li>
<li><a
</summary>
<category term="Data Mining" scheme="http://yoursite.com/categories/Data-Mining/"/>
<category term="Boost" scheme="http://yoursite.com/tags/Boost/"/>
</entry>
<entry>
<title>Feature Engineering for Data Mining</title>
<link href="http://yoursite.com/2020/03/26/Feature-Engineering-for-Data-Mining/"/>
<id>http://yoursite.com/2020/03/26/Feature-Engineering-for-Data-Mining/</id>
<published>2020-03-26T07:51:41.246Z</published>
<updated>2020-03-26T07:55:11.925Z</updated>
<summary type="html">
<p><strong>重要性:</strong></p>
<p>特征工程是比赛中重要的一部分,调参带来的效益往往是有限的,特征工程选取的好坏决定最终的结果。</p>
<p><strong>必要性:</strong></p>
<p>特征工程是和模型结合在一起的,其能更好地表示潜在问
</summary>
<category term="Data Mining" scheme="http://yoursite.com/categories/Data-Mining/"/>
<category term="特征工程" scheme="http://yoursite.com/tags/%E7%89%B9%E5%BE%81%E5%B7%A5%E7%A8%8B/"/>
</entry>
<entry>
<title>EDA-数据探索性分析</title>
<link href="http://yoursite.com/2020/03/24/EDA-%E6%95%B0%E6%8D%AE%E6%8E%A2%E7%B4%A2%E6%80%A7%E5%88%86%E6%9E%90/"/>
<id>http://yoursite.com/2020/03/24/EDA-%E6%95%B0%E6%8D%AE%E6%8E%A2%E7%B4%A2%E6%80%A7%E5%88%86%E6%9E%90/</id>
<published>2020-03-24T02:00:53.150Z</published>
<updated>2020-03-24T02:11:55.342Z</updated>
<summary type="html">
<p>EDA (Exploratory Data Analysis),也就是对数据进行探索性的分析,从而为之后的数据预处理和特征工程提供必要的结论。</p>
<p>针对数据集导入和数据的读取不再赘述,是数据集格式而定。</p>
<blockquote>
<p>格式:.csv /
</summary>
<category term="Data Mining" scheme="http://yoursite.com/categories/Data-Mining/"/>
<category term="EDA" scheme="http://yoursite.com/tags/EDA/"/>
</entry>
<entry>
<title>涉猎线程</title>
<link href="http://yoursite.com/2020/03/19/%E6%B6%89%E7%8C%8E%E7%BA%BF%E7%A8%8B/"/>
<id>http://yoursite.com/2020/03/19/%E6%B6%89%E7%8C%8E%E7%BA%BF%E7%A8%8B/</id>
<published>2020-03-19T03:52:38.794Z</published>
<updated>2020-07-14T03:12:50.964Z</updated>
<summary type="html">
<blockquote>
<p>在Java程序设计语言中,并发程序主要集中于线程</p>
</blockquote>
<blockquote>
<p>而且随着计算机系统拥有多个处理器或带有多个执行内核,线程的系统能力得到了很大的增强</p>
</blockquote>
<bloc
</summary>
<category term="Operating Systems" scheme="http://yoursite.com/categories/Operating-Systems/"/>
<category term="线程与进程" scheme="http://yoursite.com/tags/%E7%BA%BF%E7%A8%8B%E4%B8%8E%E8%BF%9B%E7%A8%8B/"/>
</entry>
<entry>
<title>10亿数据找目标,众里寻他之红黑树</title>
<link href="http://yoursite.com/2020/03/14/10%E4%BA%BF%E6%95%B0%E6%8D%AE%E6%89%BE%E7%9B%AE%E6%A0%87%EF%BC%8C%E4%BC%97%E9%87%8C%E5%AF%BB%E4%BB%96%E4%B9%8B%E7%BA%A2%E9%BB%91%E6%A0%91/"/>
<id>http://yoursite.com/2020/03/14/10%E4%BA%BF%E6%95%B0%E6%8D%AE%E6%89%BE%E7%9B%AE%E6%A0%87%EF%BC%8C%E4%BC%97%E9%87%8C%E5%AF%BB%E4%BB%96%E4%B9%8B%E7%BA%A2%E9%BB%91%E6%A0%91/</id>
<published>2020-03-14T14:50:49.247Z</published>
<updated>2020-03-22T06:43:34.940Z</updated>
<summary type="html">
<p>众里寻他,10亿数据中只需要进行10几次比较就能查找到目标,这便是红黑树的魅力所在。</p>
<p><strong><font
</summary>
<category term="Feedback" scheme="http://yoursite.com/categories/Feedback/"/>
<category term="红黑树" scheme="http://yoursite.com/tags/%E7%BA%A2%E9%BB%91%E6%A0%91/"/>
</entry>
<entry>
<title>我亦未曾饶过岁月</title>
<link href="http://yoursite.com/2020/03/12/%E6%88%91%E4%BA%A6%E6%9C%AA%E6%9B%BE%E9%A5%B6%E8%BF%87%E5%B2%81%E6%9C%88/"/>
<id>http://yoursite.com/2020/03/12/%E6%88%91%E4%BA%A6%E6%9C%AA%E6%9B%BE%E9%A5%B6%E8%BF%87%E5%B2%81%E6%9C%88/</id>
<published>2020-03-12T05:50:37.773Z</published>
<updated>2020-04-04T07:43:49.295Z</updated>
<summary type="html">
<p><strong>岁月不饶人,我亦未曾绕过岁月,总结反思,重新来过。</strong></p>
<figure class="highlight java"><table><tr><td class="gutter"><pre><span
</summary>
<category term="Feedback" scheme="http://yoursite.com/categories/Feedback/"/>
<category term="面试总结" scheme="http://yoursite.com/tags/%E9%9D%A2%E8%AF%95%E6%80%BB%E7%BB%93/"/>
</entry>
<entry>
<title>GC in HotSpot JVM</title>
<link href="http://yoursite.com/2020/03/12/GC-in-HotSpot-JVM/"/>
<id>http://yoursite.com/2020/03/12/GC-in-HotSpot-JVM/</id>
<published>2020-03-12T05:39:42.565Z</published>
<updated>2020-07-14T03:16:05.328Z</updated>
<summary type="html">
<p>今天我们来聊 GC ( Garbage Collection ), Java 与 C++ 之间有一堵由<strong>内存动态分配</strong>和<strong>垃圾收集技术</strong>所围城的 <font
</summary>
<category term="Feedback" scheme="http://yoursite.com/categories/Feedback/"/>
<category term="JVM" scheme="http://yoursite.com/tags/JVM/"/>
</entry>
<entry>
<title>人=波,颠倒因果</title>
<link href="http://yoursite.com/2020/03/05/%E4%BA%BA=%E6%B3%A2%EF%BC%8C%E9%A2%A0%E5%80%92%E5%9B%A0%E6%9E%9C/"/>
<id>http://yoursite.com/2020/03/05/%E4%BA%BA=%E6%B3%A2%EF%BC%8C%E9%A2%A0%E5%80%92%E5%9B%A0%E6%9E%9C/</id>
<published>2020-03-05T02:12:01.439Z</published>
<updated>2020-07-14T03:12:42.150Z</updated>
<summary type="html">
<p>忆中学时期的物理课,物理科学使我受益匪浅,特别是那一假设:</p>
<hr>
<p>人说可能也是以一种波的形式存在,当你观察的时候就以实物的形式存在,当你不观察的时候就以波的形式存在,因为每当我们闭上眼睛根本不知道周围真正发生了什么。</p>
<hr>
<p>这个假设深埋心
</summary>
<category term="Physics" scheme="http://yoursite.com/categories/Physics/"/>
<category term="不确定性" scheme="http://yoursite.com/tags/%E4%B8%8D%E7%A1%AE%E5%AE%9A%E6%80%A7/"/>
</entry>
<entry>
<title>CPU Sched</title>
<link href="http://yoursite.com/2020/03/05/CPU-Sched/"/>
<id>http://yoursite.com/2020/03/05/CPU-Sched/</id>
<published>2020-03-05T02:09:03.550Z</published>
<updated>2020-07-14T03:14:57.875Z</updated>
<summary type="html">
<h1 id="Introduction"><a href="#Introduction" class="headerlink" title="Introduction"></a>Introduction</h1><p>本文将介绍 CPU 高级策略之 CPU
</summary>
<category term="Operating Systems" scheme="http://yoursite.com/categories/Operating-Systems/"/>
<category term="调度策略" scheme="http://yoursite.com/tags/%E8%B0%83%E5%BA%A6%E7%AD%96%E7%95%A5/"/>
</entry>
</feed>