├── .gitignore ├── D#0001-undefined_reference_to_XXX ├── D#0001.md ├── code │ ├── bar.cpp │ ├── bar.h │ ├── baz.c │ ├── baz.h │ ├── foo.cpp │ ├── foo.h │ ├── main.cpp │ ├── qux.cpp │ └── qux.h └── images │ ├── Selection_175.png │ ├── Selection_176.png │ ├── Selection_177.png │ ├── Selection_178.png │ ├── Selection_179.png │ ├── Selection_180.png │ ├── Selection_181.png │ ├── Selection_182.png │ ├── Selection_184.png │ ├── Selection_185.png │ ├── Selection_186.png │ ├── Selection_187.png │ └── Selection_188.png ├── D#0002-hack_your_printf ├── D#0002.md ├── code │ ├── 3rd_lib.cpp │ ├── 3rd_lib.h │ ├── lib3rd_new.so │ ├── main.cpp │ ├── main2.cpp │ ├── my_hack.cpp │ ├── my_hack.h │ └── replace.cpp └── images │ ├── 10-52-53.png │ ├── 20-30-03.png │ ├── 20-31-42.png │ ├── 20-36-09.png │ ├── 20-39-19.png │ ├── 20-40-08.png │ ├── 20-55-24.png │ ├── 21-18-07.png │ ├── 21-22-58.png │ ├── 21-56-03.png │ └── 22-09-21.png ├── D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set ├── D#0003.md ├── code │ ├── build.sh │ ├── cosine_similarity.h │ ├── main.cpp │ ├── search_best.h │ └── timer.h └── images │ ├── Selection_191.png │ ├── Selection_192.png │ ├── Selection_193.png │ ├── Selection_194.png │ ├── Selection_195.png │ ├── Selection_196.png │ ├── Selection_197.png │ ├── Selection_198.png │ ├── Selection_199.png │ ├── Selection_200.png │ ├── Selection_201.png │ ├── Selection_202.png │ ├── Selection_203.png │ ├── Selection_204.png │ ├── Selection_205.png │ ├── Selection_206.png │ ├── Selection_207.png │ ├── Selection_210.png │ ├── Selection_211.png │ ├── Selection_212.png │ ├── Selection_213.png │ ├── Selection_214.png │ ├── Selection_216.png │ ├── Selection_217.png │ ├── Selection_218.png │ ├── Selection_219.png │ ├── Selection_220.png │ ├── Selection_221.png │ ├── Selection_222.png │ ├── Selection_223.png │ ├── Selection_224.png │ ├── Selection_226.png │ └── Selection_227.png ├── D#0004-depthwise_separable_convolutions_in_mobilenet ├── D#0004.md └── images │ └── 436695808.jpg ├── D#0005-separable_convolutions_in_image_processing ├── D#0005.md ├── code │ ├── GaussianFilter.cpp │ ├── GaussianFilter.h │ ├── build.sh │ ├── main.cpp │ ├── separateGaussianFilter.cpp │ ├── separateGaussianFilter.h │ └── timer.h └── images │ ├── 1386915682.jpg │ ├── 1565291630.jpg │ ├── Selection_231.png │ └── lena.jpeg ├── D#0006-protect_my_function ├── D#0006.md ├── code │ ├── auth.cpp │ ├── auth.h │ ├── main.cpp │ ├── sdk.cpp │ └── sdk.h └── images │ ├── Selection_282.png │ ├── Selection_283.png │ ├── Selection_284.png │ ├── Selection_285.png │ ├── Selection_287.png │ ├── Selection_288.png │ ├── Selection_289.png │ ├── Selection_290.png │ ├── Selection_291.png │ ├── Selection_292.png │ ├── Selection_293.png │ ├── Selection_294.png │ ├── Selection_295.png │ ├── Selection_296.png │ ├── Selection_297.png │ └── Selection_298.png ├── D#0007-compile_git_commit_sha1_into_elf ├── D#0007.md ├── code │ ├── Makefile │ ├── main.cpp │ ├── sdk.cpp │ └── sdk.h └── images │ ├── Selection_301.png │ ├── Selection_302.png │ ├── Selection_303.png │ ├── Selection_304.png │ ├── Selection_305.png │ └── Selection_307.png ├── D#0008-拉格朗日乘子法 ├── D#0008.md └── images │ ├── 113536.jpg │ ├── 114729.png │ ├── 131203.png │ ├── 144724.png │ ├── 151353.png │ ├── 154641.png │ ├── 162338.jpg │ ├── dualfunc.png │ └── dualprob.png ├── D#0009-SVM ├── D#0009.md └── images │ ├── .gitkeep │ ├── 110529.png │ ├── 113708.png │ ├── 160121.png │ ├── 203213.jpg │ ├── 212511.jpg │ └── 231537.png ├── D#0010-从线性回归到对率回归到Softmax激活函数 ├── D#0010.md └── images │ ├── .gitkeep │ ├── 104656.png │ ├── 132651.png │ ├── 150909.png │ └── 175045.png ├── D#0011-kNN ├── D#0011.md └── images │ └── .gitkeep ├── D#0012-为什么选交叉熵作为分类问题的损失函数 ├── D#0012.md └── images │ ├── .gitkeep │ ├── 172059.png │ ├── 195031.png │ ├── 223112.png │ ├── 223449.png │ ├── 225907.png │ └── 231448.png ├── D#0013-深度学习调参常用方法总结 ├── D#0013.md └── images │ ├── .gitkeep │ ├── 124926.png │ ├── 180705.png │ ├── 183737.jpg │ ├── bayes1.jpg │ ├── bayes2.jpg │ └── bayes3.jpg ├── D#0014-数据降维常用方法总结(LDA,PCA) ├── D#0014.md └── images │ ├── .gitkeep │ ├── 133329.png │ ├── 143203.png │ └── 163536.png ├── D#0015-深度学习常用损失函数 ├── D#0015.md └── images │ ├── .gitkeep │ ├── 154349.png │ ├── 154353.png │ ├── 154408.png │ ├── 154834.png │ ├── 160509.png │ ├── 160647.png │ ├── 161349.png │ ├── 161758.png │ ├── 162310.png │ └── 164439.png ├── D#0016-深度学习中不平衡样本的处理 ├── D#0016.md └── images │ ├── .gitkeep │ ├── 225817.png │ └── 230646.png ├── D#0017-MTCNN和FaceBoxes ├── D#0017.md └── images │ ├── .gitkeep │ ├── 174303.png │ ├── 181230.png │ ├── 183249.png │ ├── 184628.png │ ├── 202239.png │ ├── 203348.png │ ├── 203537.png │ ├── 203658.png │ └── 203924.png ├── D#0018-Mask_TextSpotter ├── D#0018.md └── images │ └── .gitkeep ├── D#0019-DeepID1,DeepID2,DeepID2+和DeepID3 ├── D#0019.md └── images │ ├── .gitkeep │ ├── 211326.png │ ├── 213046.png │ ├── 213312.png │ ├── 213324.png │ ├── 213342.png │ ├── 224342.png │ ├── 224356.png │ ├── 225135.png │ ├── Selection_329.png │ ├── Selection_330.png │ ├── Selection_331.png │ ├── Selection_332.png │ ├── Selection_333.png │ ├── Selection_334.png │ ├── Selection_335.png │ └── Selection_336.png ├── D#0020-Batch-Normalization层原理与分析 ├── D#0020.md └── images │ ├── .gitkeep │ ├── 213118.png │ ├── 213528.png │ ├── 213536.png │ ├── 224019.png │ ├── 233104.png │ ├── 233310.png │ ├── Selection_343.png │ ├── Selection_345.png │ ├── Selection_346.png │ ├── Selection_347.png │ ├── Selection_348.png │ ├── Selection_349.png │ └── Selection_350.png ├── D#0021-机器学习中的过拟合及其解决办法 ├── D#0021.md └── images │ ├── .gitkeep │ ├── 214025.png │ ├── 232539.png │ ├── Selection_351.png │ ├── Selection_352.png │ ├── Selection_353.png │ ├── Selection_354.png │ ├── Selection_355.png │ ├── Selection_356.png │ ├── Selection_357.png │ ├── Selection_358.png │ └── Selection_359.png ├── D#0022-SSD ├── D#0022.md └── images │ └── .gitkeep ├── D#0023-CNN模型计算量估计 ├── D#0023.md └── images │ └── .gitkeep ├── D#0024-CNN模型内存访问估计 ├── D#0024.md └── images │ └── .gitkeep ├── D#0025-CNN中使用卷积代替全连接 ├── D#0025.md └── images │ ├── .gitkeep │ └── 225831.png ├── D#0026-深度学习检测小目标常用方法 ├── D#0026.md └── images │ ├── .gitkeep │ ├── 215102.png │ ├── 224212.png │ ├── 224506.png │ ├── 230223.png │ ├── 230407.png │ ├── 230607.png │ ├── 232423.png │ ├── Selection_381.png │ ├── Selection_382.png │ ├── Selection_383.png │ ├── Selection_384.png │ ├── Selection_387.png │ ├── Selection_388.png │ ├── Selection_389.png │ └── Selection_390.png ├── D#0027-聊聊2017 ImageNet夺冠的SENet ├── D#0027.md └── images │ ├── .gitkeep │ ├── SENet.jpg │ ├── Selection_418.png │ ├── Selection_419.png │ ├── Selection_420.png │ ├── Selection_421.png │ ├── Selection_423.png │ ├── Selection_424.png │ ├── Selection_425.png │ ├── Selection_426.png │ ├── Selection_427.png │ └── Selection_428.png ├── D#0028-再聊SENet的孪生兄弟SKNet ├── D#0028.md └── images │ ├── .gitkeep │ ├── Selection_430.png │ ├── Selection_431.png │ ├── Selection_432.png │ ├── Selection_433.png │ ├── Selection_434.png │ └── Selection_435.png ├── D#0029-CV中的注意力机制 ├── D#0029.md └── images │ ├── .gitkeep │ ├── Selection_437.png │ ├── Selection_438.png │ ├── Selection_439.png │ ├── Selection_440.png │ ├── Selection_441.png │ └── Selection_442.png ├── D#0030-类MTCNN的360RIP人脸检测器PCN ├── D#0030.md └── images │ ├── .gitkeep │ ├── Selection_443.png │ ├── Selection_444.png │ ├── Selection_445.png │ ├── Selection_446.png │ ├── Selection_447.png │ ├── Selection_448.png │ ├── Selection_449.png │ ├── Selection_451.png │ ├── Selection_452.png │ ├── Selection_453.png │ ├── Selection_454.png │ ├── Selection_455.png │ ├── Selection_456.png │ ├── Selection_458.png │ ├── Selection_459.png │ ├── Selection_461.png │ └── Selection_462.png ├── D#0031-知识蒸馏Knowledge-Distillation ├── D#0031.md └── images │ ├── .gitkeep │ ├── KD.png │ ├── Selection_478.png │ └── Selection_479.png ├── D#0032-CNN可视化之类激活热力图Grad-CAM ├── D#0032.md └── images │ ├── .gitkeep │ ├── Selection_004.png │ ├── Selection_005.png │ ├── Selection_006.png │ ├── Selection_007.png │ └── Selection_008.png ├── D#0033-一些分类网络的训练技巧 ├── D#0033.md └── images │ ├── .gitkeep │ ├── Selection_495.png │ ├── Selection_496.png │ ├── Selection_497.png │ ├── Selection_498.png │ ├── Selection_499.png │ ├── Selection_500.png │ ├── Selection_501.png │ └── Selection_502.png ├── D#0034-火箭发射:阿里巴巴的轻量网络训练方法 ├── D#0034.md └── images │ ├── .gitkeep │ ├── 210322.png │ ├── 211148.png │ └── 213237.png ├── D#0035-2KW短视频打标问题之Activate-Learning ├── D#0035.md └── images │ └── .gitkeep ├── D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning ├── D#0036.md └── images │ ├── .gitkeep │ ├── Selection_508.png │ ├── Selection_509.png │ ├── Selection_510.png │ ├── Selection_511.png │ ├── Selection_512.png │ └── TransferLearning.png ├── D#0037-CentralNet做多模态融合 ├── D#0037.md └── images │ ├── .gitkeep │ ├── Selection_511.png │ ├── Selection_513.png │ ├── Selection_514.png │ ├── Selection_515.png │ ├── Selection_516.png │ ├── Selection_517.png │ ├── Selection_518.png │ ├── Selection_519.png │ ├── Selection_520.png │ ├── Selection_521.png │ ├── Selection_522.png │ └── Selection_523.png ├── D#0038-Multi-View-Active-Learning做视频推荐 ├── D#0038.md └── images │ ├── .gitkeep │ ├── Selection_504.png │ ├── Selection_505.png │ ├── Selection_506.png │ ├── Selection_507.png │ ├── Selection_508.png │ ├── Selection_509.png │ ├── Selection_510.png │ └── Selection_511.png ├── D#0039-用FCN做分割 ├── D#0039.md └── images │ ├── .gitkeep │ ├── 225831.png │ ├── 232018.png │ ├── Selection_513.png │ ├── Selection_514.png │ ├── Selection_515.png │ └── Selection_516.png ├── D#0040-用U-Net做分割 ├── D#0040.md └── images │ ├── .gitkeep │ ├── Selection_518.png │ ├── Selection_519.png │ ├── Selection_520.png │ ├── Selection_521.png │ ├── Selection_522.png │ └── Selection_523.png ├── D#0041-用RefineNet做分割 ├── D#0041.md └── images │ ├── .gitkeep │ ├── Selection_525.png │ ├── Selection_526.png │ ├── Selection_527.png │ ├── Selection_528.png │ ├── Selection_529.png │ └── Selection_530.png ├── D#0042-用DeepLabv3+的Encoder-Decoder做分割 ├── D#0042.md └── images │ ├── .gitkeep │ ├── 232018.png │ ├── Selection_518.png │ ├── Selection_531.png │ ├── Selection_532.png │ ├── Selection_533.png │ └── Selection_534.png ├── D#0043-用HRNet做分割 ├── D#0043.md └── images │ ├── .gitkeep │ ├── 154321.png │ ├── 155806.png │ ├── 160639.png │ ├── 161658.png │ └── 232018.png ├── D#0044-用Network-Slimming做模型加速和压缩 ├── D#0044.md └── images │ ├── .gitkeep │ ├── 543.png │ ├── 544.png │ ├── 545.png │ ├── 546.png │ ├── 547.png │ ├── 548.png │ └── 549.png ├── D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation ├── D#0045.md └── images │ ├── .gitkeep │ ├── 556.png │ ├── 557.png │ ├── 558.png │ ├── 560.png │ ├── 561.png │ ├── 562.png │ ├── 563.png │ └── 564.png ├── D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints ├── D#0046.md └── images │ ├── .gitkeep │ ├── 565.png │ ├── 566.png │ ├── 567.png │ ├── 568.png │ ├── 569.png │ ├── 570.png │ ├── 571.png │ ├── 572.png │ ├── 573.png │ ├── 574.png │ ├── 575.png │ ├── 576.png │ └── 577.png ├── D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet ├── D#0047.md └── images │ ├── .gitkeep │ ├── 565.png │ ├── 575.png │ ├── 580.png │ ├── 581.png │ ├── 582.png │ ├── 583.png │ ├── 584.png │ ├── 585.png │ └── 586.png ├── D#0048-Anchor-Free第三篇Objects-as-Points ├── D#0048.md └── images │ ├── .gitkeep │ ├── 122149.png │ ├── 125313.png │ ├── 130128.png │ ├── 130954.png │ ├── 131049.png │ ├── 131135.png │ ├── 131329.png │ ├── 565.png │ └── 580.png ├── D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection ├── D#0049.md └── images │ ├── .gitkeep │ ├── 180227.png │ ├── 180345.png │ ├── 181626.png │ ├── 182402.png │ ├── 183054.png │ ├── 183111.png │ └── 184637.png ├── D#0050-C++中浮点值做比较的正确方法 ├── code │ └── main.cpp └── images │ └── .gitkeep ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | a.out 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/D#0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/D#0001.md -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/bar.cpp -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/bar.h -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/baz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/baz.c -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/baz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/baz.h -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/foo.cpp -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/foo.h -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/main.cpp -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/qux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/qux.cpp -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/code/qux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/code/qux.h -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_175.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_176.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_177.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_178.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_179.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_180.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_181.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_182.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_184.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_185.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_186.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_187.png -------------------------------------------------------------------------------- /D#0001-undefined_reference_to_XXX/images/Selection_188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0001-undefined_reference_to_XXX/images/Selection_188.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/D#0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/D#0002.md -------------------------------------------------------------------------------- /D#0002-hack_your_printf/code/3rd_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/code/3rd_lib.cpp -------------------------------------------------------------------------------- /D#0002-hack_your_printf/code/3rd_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/code/3rd_lib.h -------------------------------------------------------------------------------- /D#0002-hack_your_printf/code/lib3rd_new.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/code/lib3rd_new.so -------------------------------------------------------------------------------- /D#0002-hack_your_printf/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/code/main.cpp -------------------------------------------------------------------------------- /D#0002-hack_your_printf/code/main2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/code/main2.cpp -------------------------------------------------------------------------------- /D#0002-hack_your_printf/code/my_hack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/code/my_hack.cpp -------------------------------------------------------------------------------- /D#0002-hack_your_printf/code/my_hack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/code/my_hack.h -------------------------------------------------------------------------------- /D#0002-hack_your_printf/code/replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/code/replace.cpp -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/10-52-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/10-52-53.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/20-30-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/20-30-03.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/20-31-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/20-31-42.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/20-36-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/20-36-09.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/20-39-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/20-39-19.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/20-40-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/20-40-08.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/20-55-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/20-55-24.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/21-18-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/21-18-07.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/21-22-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/21-22-58.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/21-56-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/21-56-03.png -------------------------------------------------------------------------------- /D#0002-hack_your_printf/images/22-09-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0002-hack_your_printf/images/22-09-21.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/D#0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/D#0003.md -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/build.sh -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/cosine_similarity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/cosine_similarity.h -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/main.cpp -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/search_best.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/search_best.h -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/code/timer.h -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_191.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_192.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_193.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_194.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_195.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_196.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_197.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_198.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_199.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_200.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_201.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_202.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_203.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_204.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_205.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_206.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_207.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_210.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_211.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_212.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_213.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_214.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_216.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_217.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_218.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_219.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_220.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_221.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_222.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_223.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_224.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_226.png -------------------------------------------------------------------------------- /D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0003-optimizing_cosine_distance_searching_in_a_million_feature-set/images/Selection_227.png -------------------------------------------------------------------------------- /D#0004-depthwise_separable_convolutions_in_mobilenet/D#0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0004-depthwise_separable_convolutions_in_mobilenet/D#0004.md -------------------------------------------------------------------------------- /D#0004-depthwise_separable_convolutions_in_mobilenet/images/436695808.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0004-depthwise_separable_convolutions_in_mobilenet/images/436695808.jpg -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/D#0005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/D#0005.md -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/code/GaussianFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/code/GaussianFilter.cpp -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/code/GaussianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/code/GaussianFilter.h -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/code/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/code/build.sh -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/code/main.cpp -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/code/separateGaussianFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/code/separateGaussianFilter.cpp -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/code/separateGaussianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/code/separateGaussianFilter.h -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/code/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/code/timer.h -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/images/1386915682.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/images/1386915682.jpg -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/images/1565291630.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/images/1565291630.jpg -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/images/Selection_231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/images/Selection_231.png -------------------------------------------------------------------------------- /D#0005-separable_convolutions_in_image_processing/images/lena.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0005-separable_convolutions_in_image_processing/images/lena.jpeg -------------------------------------------------------------------------------- /D#0006-protect_my_function/D#0006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/D#0006.md -------------------------------------------------------------------------------- /D#0006-protect_my_function/code/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/code/auth.cpp -------------------------------------------------------------------------------- /D#0006-protect_my_function/code/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/code/auth.h -------------------------------------------------------------------------------- /D#0006-protect_my_function/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/code/main.cpp -------------------------------------------------------------------------------- /D#0006-protect_my_function/code/sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/code/sdk.cpp -------------------------------------------------------------------------------- /D#0006-protect_my_function/code/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/code/sdk.h -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_282.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_283.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_283.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_284.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_285.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_287.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_287.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_288.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_289.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_290.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_290.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_291.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_291.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_292.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_293.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_294.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_295.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_295.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_296.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_297.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_297.png -------------------------------------------------------------------------------- /D#0006-protect_my_function/images/Selection_298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0006-protect_my_function/images/Selection_298.png -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/D#0007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/D#0007.md -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/code/Makefile -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/code/main.cpp -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/code/sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/code/sdk.cpp -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/code/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/code/sdk.h -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/images/Selection_301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/images/Selection_301.png -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/images/Selection_302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/images/Selection_302.png -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/images/Selection_303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/images/Selection_303.png -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/images/Selection_304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/images/Selection_304.png -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/images/Selection_305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/images/Selection_305.png -------------------------------------------------------------------------------- /D#0007-compile_git_commit_sha1_into_elf/images/Selection_307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0007-compile_git_commit_sha1_into_elf/images/Selection_307.png -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/D#0008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/D#0008.md -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/113536.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/113536.jpg -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/114729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/114729.png -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/131203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/131203.png -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/144724.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/144724.png -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/151353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/151353.png -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/154641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/154641.png -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/162338.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/162338.jpg -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/dualfunc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/dualfunc.png -------------------------------------------------------------------------------- /D#0008-拉格朗日乘子法/images/dualprob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0008-拉格朗日乘子法/images/dualprob.png -------------------------------------------------------------------------------- /D#0009-SVM/D#0009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0009-SVM/D#0009.md -------------------------------------------------------------------------------- /D#0009-SVM/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0009-SVM/images/110529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0009-SVM/images/110529.png -------------------------------------------------------------------------------- /D#0009-SVM/images/113708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0009-SVM/images/113708.png -------------------------------------------------------------------------------- /D#0009-SVM/images/160121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0009-SVM/images/160121.png -------------------------------------------------------------------------------- /D#0009-SVM/images/203213.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0009-SVM/images/203213.jpg -------------------------------------------------------------------------------- /D#0009-SVM/images/212511.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0009-SVM/images/212511.jpg -------------------------------------------------------------------------------- /D#0009-SVM/images/231537.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0009-SVM/images/231537.png -------------------------------------------------------------------------------- /D#0010-从线性回归到对率回归到Softmax激活函数/D#0010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0010-从线性回归到对率回归到Softmax激活函数/D#0010.md -------------------------------------------------------------------------------- /D#0010-从线性回归到对率回归到Softmax激活函数/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0010-从线性回归到对率回归到Softmax激活函数/images/104656.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0010-从线性回归到对率回归到Softmax激活函数/images/104656.png -------------------------------------------------------------------------------- /D#0010-从线性回归到对率回归到Softmax激活函数/images/132651.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0010-从线性回归到对率回归到Softmax激活函数/images/132651.png -------------------------------------------------------------------------------- /D#0010-从线性回归到对率回归到Softmax激活函数/images/150909.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0010-从线性回归到对率回归到Softmax激活函数/images/150909.png -------------------------------------------------------------------------------- /D#0010-从线性回归到对率回归到Softmax激活函数/images/175045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0010-从线性回归到对率回归到Softmax激活函数/images/175045.png -------------------------------------------------------------------------------- /D#0011-kNN/D#0011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0011-kNN/D#0011.md -------------------------------------------------------------------------------- /D#0011-kNN/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0012-为什么选交叉熵作为分类问题的损失函数/D#0012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0012-为什么选交叉熵作为分类问题的损失函数/D#0012.md -------------------------------------------------------------------------------- /D#0012-为什么选交叉熵作为分类问题的损失函数/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0012-为什么选交叉熵作为分类问题的损失函数/images/172059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0012-为什么选交叉熵作为分类问题的损失函数/images/172059.png -------------------------------------------------------------------------------- /D#0012-为什么选交叉熵作为分类问题的损失函数/images/195031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0012-为什么选交叉熵作为分类问题的损失函数/images/195031.png -------------------------------------------------------------------------------- /D#0012-为什么选交叉熵作为分类问题的损失函数/images/223112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0012-为什么选交叉熵作为分类问题的损失函数/images/223112.png -------------------------------------------------------------------------------- /D#0012-为什么选交叉熵作为分类问题的损失函数/images/223449.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0012-为什么选交叉熵作为分类问题的损失函数/images/223449.png -------------------------------------------------------------------------------- /D#0012-为什么选交叉熵作为分类问题的损失函数/images/225907.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0012-为什么选交叉熵作为分类问题的损失函数/images/225907.png -------------------------------------------------------------------------------- /D#0012-为什么选交叉熵作为分类问题的损失函数/images/231448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0012-为什么选交叉熵作为分类问题的损失函数/images/231448.png -------------------------------------------------------------------------------- /D#0013-深度学习调参常用方法总结/D#0013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0013-深度学习调参常用方法总结/D#0013.md -------------------------------------------------------------------------------- /D#0013-深度学习调参常用方法总结/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0013-深度学习调参常用方法总结/images/124926.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0013-深度学习调参常用方法总结/images/124926.png -------------------------------------------------------------------------------- /D#0013-深度学习调参常用方法总结/images/180705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0013-深度学习调参常用方法总结/images/180705.png -------------------------------------------------------------------------------- /D#0013-深度学习调参常用方法总结/images/183737.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0013-深度学习调参常用方法总结/images/183737.jpg -------------------------------------------------------------------------------- /D#0013-深度学习调参常用方法总结/images/bayes1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0013-深度学习调参常用方法总结/images/bayes1.jpg -------------------------------------------------------------------------------- /D#0013-深度学习调参常用方法总结/images/bayes2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0013-深度学习调参常用方法总结/images/bayes2.jpg -------------------------------------------------------------------------------- /D#0013-深度学习调参常用方法总结/images/bayes3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0013-深度学习调参常用方法总结/images/bayes3.jpg -------------------------------------------------------------------------------- /D#0014-数据降维常用方法总结(LDA,PCA)/D#0014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0014-数据降维常用方法总结(LDA,PCA)/D#0014.md -------------------------------------------------------------------------------- /D#0014-数据降维常用方法总结(LDA,PCA)/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0014-数据降维常用方法总结(LDA,PCA)/images/133329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0014-数据降维常用方法总结(LDA,PCA)/images/133329.png -------------------------------------------------------------------------------- /D#0014-数据降维常用方法总结(LDA,PCA)/images/143203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0014-数据降维常用方法总结(LDA,PCA)/images/143203.png -------------------------------------------------------------------------------- /D#0014-数据降维常用方法总结(LDA,PCA)/images/163536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0014-数据降维常用方法总结(LDA,PCA)/images/163536.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/D#0015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/D#0015.md -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/154349.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/154349.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/154353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/154353.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/154408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/154408.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/154834.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/154834.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/160509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/160509.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/160647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/160647.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/161349.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/161349.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/161758.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/161758.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/162310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/162310.png -------------------------------------------------------------------------------- /D#0015-深度学习常用损失函数/images/164439.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0015-深度学习常用损失函数/images/164439.png -------------------------------------------------------------------------------- /D#0016-深度学习中不平衡样本的处理/D#0016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0016-深度学习中不平衡样本的处理/D#0016.md -------------------------------------------------------------------------------- /D#0016-深度学习中不平衡样本的处理/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0016-深度学习中不平衡样本的处理/images/225817.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0016-深度学习中不平衡样本的处理/images/225817.png -------------------------------------------------------------------------------- /D#0016-深度学习中不平衡样本的处理/images/230646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0016-深度学习中不平衡样本的处理/images/230646.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/D#0017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/D#0017.md -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/174303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/174303.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/181230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/181230.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/183249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/183249.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/184628.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/184628.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/202239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/202239.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/203348.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/203348.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/203537.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/203537.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/203658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/203658.png -------------------------------------------------------------------------------- /D#0017-MTCNN和FaceBoxes/images/203924.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0017-MTCNN和FaceBoxes/images/203924.png -------------------------------------------------------------------------------- /D#0018-Mask_TextSpotter/D#0018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0018-Mask_TextSpotter/D#0018.md -------------------------------------------------------------------------------- /D#0018-Mask_TextSpotter/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/D#0019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/D#0019.md -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/211326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/211326.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/213046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/213046.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/213312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/213312.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/213324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/213324.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/213342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/213342.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/224342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/224342.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/224356.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/224356.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/225135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/225135.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_329.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_330.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_331.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_332.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_333.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_333.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_334.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_335.png -------------------------------------------------------------------------------- /D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0019-DeepID1,DeepID2,DeepID2+和DeepID3/images/Selection_336.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/D#0020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/D#0020.md -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/213118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/213118.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/213528.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/213528.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/213536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/213536.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/224019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/224019.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/233104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/233104.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/233310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/233310.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/Selection_343.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/Selection_343.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/Selection_345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/Selection_345.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/Selection_346.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/Selection_346.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/Selection_347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/Selection_347.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/Selection_348.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/Selection_348.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/Selection_349.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/Selection_349.png -------------------------------------------------------------------------------- /D#0020-Batch-Normalization层原理与分析/images/Selection_350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0020-Batch-Normalization层原理与分析/images/Selection_350.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/D#0021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/D#0021.md -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/214025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/214025.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/232539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/232539.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_351.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_351.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_352.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_352.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_353.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_354.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_354.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_355.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_356.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_356.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_357.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_357.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_358.png -------------------------------------------------------------------------------- /D#0021-机器学习中的过拟合及其解决办法/images/Selection_359.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0021-机器学习中的过拟合及其解决办法/images/Selection_359.png -------------------------------------------------------------------------------- /D#0022-SSD/D#0022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0022-SSD/D#0022.md -------------------------------------------------------------------------------- /D#0022-SSD/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0023-CNN模型计算量估计/D#0023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0023-CNN模型计算量估计/D#0023.md -------------------------------------------------------------------------------- /D#0023-CNN模型计算量估计/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0024-CNN模型内存访问估计/D#0024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0024-CNN模型内存访问估计/D#0024.md -------------------------------------------------------------------------------- /D#0024-CNN模型内存访问估计/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0025-CNN中使用卷积代替全连接/D#0025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0025-CNN中使用卷积代替全连接/D#0025.md -------------------------------------------------------------------------------- /D#0025-CNN中使用卷积代替全连接/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0025-CNN中使用卷积代替全连接/images/225831.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0025-CNN中使用卷积代替全连接/images/225831.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/D#0026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/D#0026.md -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/215102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/215102.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/224212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/224212.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/224506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/224506.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/230223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/230223.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/230407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/230407.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/230607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/230607.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/232423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/232423.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/Selection_381.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/Selection_381.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/Selection_382.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/Selection_382.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/Selection_383.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/Selection_383.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/Selection_384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/Selection_384.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/Selection_387.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/Selection_387.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/Selection_388.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/Selection_388.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/Selection_389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/Selection_389.png -------------------------------------------------------------------------------- /D#0026-深度学习检测小目标常用方法/images/Selection_390.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0026-深度学习检测小目标常用方法/images/Selection_390.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/D#0027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/D#0027.md -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/SENet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/SENet.jpg -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_418.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_419.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_419.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_420.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_420.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_421.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_421.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_423.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_424.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_424.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_425.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_426.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_426.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_427.png -------------------------------------------------------------------------------- /D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_428.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0027-聊聊2017 ImageNet夺冠的SENet/images/Selection_428.png -------------------------------------------------------------------------------- /D#0028-再聊SENet的孪生兄弟SKNet/D#0028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0028-再聊SENet的孪生兄弟SKNet/D#0028.md -------------------------------------------------------------------------------- /D#0028-再聊SENet的孪生兄弟SKNet/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_430.png -------------------------------------------------------------------------------- /D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_431.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_431.png -------------------------------------------------------------------------------- /D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_432.png -------------------------------------------------------------------------------- /D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_433.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_433.png -------------------------------------------------------------------------------- /D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_434.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_434.png -------------------------------------------------------------------------------- /D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_435.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0028-再聊SENet的孪生兄弟SKNet/images/Selection_435.png -------------------------------------------------------------------------------- /D#0029-CV中的注意力机制/D#0029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0029-CV中的注意力机制/D#0029.md -------------------------------------------------------------------------------- /D#0029-CV中的注意力机制/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0029-CV中的注意力机制/images/Selection_437.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0029-CV中的注意力机制/images/Selection_437.png -------------------------------------------------------------------------------- /D#0029-CV中的注意力机制/images/Selection_438.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0029-CV中的注意力机制/images/Selection_438.png -------------------------------------------------------------------------------- /D#0029-CV中的注意力机制/images/Selection_439.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0029-CV中的注意力机制/images/Selection_439.png -------------------------------------------------------------------------------- /D#0029-CV中的注意力机制/images/Selection_440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0029-CV中的注意力机制/images/Selection_440.png -------------------------------------------------------------------------------- /D#0029-CV中的注意力机制/images/Selection_441.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0029-CV中的注意力机制/images/Selection_441.png -------------------------------------------------------------------------------- /D#0029-CV中的注意力机制/images/Selection_442.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0029-CV中的注意力机制/images/Selection_442.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/D#0030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/D#0030.md -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_443.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_444.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_445.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_445.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_446.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_446.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_447.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_447.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_448.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_449.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_449.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_451.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_451.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_452.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_452.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_453.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_453.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_454.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_454.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_455.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_456.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_458.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_458.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_459.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_459.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_461.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_461.png -------------------------------------------------------------------------------- /D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_462.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0030-类MTCNN的360RIP人脸检测器PCN/images/Selection_462.png -------------------------------------------------------------------------------- /D#0031-知识蒸馏Knowledge-Distillation/D#0031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0031-知识蒸馏Knowledge-Distillation/D#0031.md -------------------------------------------------------------------------------- /D#0031-知识蒸馏Knowledge-Distillation/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0031-知识蒸馏Knowledge-Distillation/images/KD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0031-知识蒸馏Knowledge-Distillation/images/KD.png -------------------------------------------------------------------------------- /D#0031-知识蒸馏Knowledge-Distillation/images/Selection_478.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0031-知识蒸馏Knowledge-Distillation/images/Selection_478.png -------------------------------------------------------------------------------- /D#0031-知识蒸馏Knowledge-Distillation/images/Selection_479.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0031-知识蒸馏Knowledge-Distillation/images/Selection_479.png -------------------------------------------------------------------------------- /D#0032-CNN可视化之类激活热力图Grad-CAM/D#0032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0032-CNN可视化之类激活热力图Grad-CAM/D#0032.md -------------------------------------------------------------------------------- /D#0032-CNN可视化之类激活热力图Grad-CAM/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_004.png -------------------------------------------------------------------------------- /D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_005.png -------------------------------------------------------------------------------- /D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_006.png -------------------------------------------------------------------------------- /D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_007.png -------------------------------------------------------------------------------- /D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0032-CNN可视化之类激活热力图Grad-CAM/images/Selection_008.png -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/D#0033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/D#0033.md -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/Selection_495.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/images/Selection_495.png -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/Selection_496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/images/Selection_496.png -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/Selection_497.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/images/Selection_497.png -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/Selection_498.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/images/Selection_498.png -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/Selection_499.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/images/Selection_499.png -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/Selection_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/images/Selection_500.png -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/Selection_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/images/Selection_501.png -------------------------------------------------------------------------------- /D#0033-一些分类网络的训练技巧/images/Selection_502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0033-一些分类网络的训练技巧/images/Selection_502.png -------------------------------------------------------------------------------- /D#0034-火箭发射:阿里巴巴的轻量网络训练方法/D#0034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0034-火箭发射:阿里巴巴的轻量网络训练方法/D#0034.md -------------------------------------------------------------------------------- /D#0034-火箭发射:阿里巴巴的轻量网络训练方法/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0034-火箭发射:阿里巴巴的轻量网络训练方法/images/210322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0034-火箭发射:阿里巴巴的轻量网络训练方法/images/210322.png -------------------------------------------------------------------------------- /D#0034-火箭发射:阿里巴巴的轻量网络训练方法/images/211148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0034-火箭发射:阿里巴巴的轻量网络训练方法/images/211148.png -------------------------------------------------------------------------------- /D#0034-火箭发射:阿里巴巴的轻量网络训练方法/images/213237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0034-火箭发射:阿里巴巴的轻量网络训练方法/images/213237.png -------------------------------------------------------------------------------- /D#0035-2KW短视频打标问题之Activate-Learning/D#0035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0035-2KW短视频打标问题之Activate-Learning/D#0035.md -------------------------------------------------------------------------------- /D#0035-2KW短视频打标问题之Activate-Learning/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/D#0036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/D#0036.md -------------------------------------------------------------------------------- /D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_508.png -------------------------------------------------------------------------------- /D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_509.png -------------------------------------------------------------------------------- /D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_510.png -------------------------------------------------------------------------------- /D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_511.png -------------------------------------------------------------------------------- /D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/Selection_512.png -------------------------------------------------------------------------------- /D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/TransferLearning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0036-2KW短视频打标问题之Multi-Modal-Machine-Learning/images/TransferLearning.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/D#0037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/D#0037.md -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_511.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_513.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_514.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_514.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_515.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_516.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_516.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_517.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_518.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_518.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_519.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_519.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_520.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_521.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_521.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_522.png -------------------------------------------------------------------------------- /D#0037-CentralNet做多模态融合/images/Selection_523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0037-CentralNet做多模态融合/images/Selection_523.png -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/D#0038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/D#0038.md -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_504.png -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_505.png -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_506.png -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_507.png -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_508.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_508.png -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_509.png -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_510.png -------------------------------------------------------------------------------- /D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0038-Multi-View-Active-Learning做视频推荐/images/Selection_511.png -------------------------------------------------------------------------------- /D#0039-用FCN做分割/D#0039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0039-用FCN做分割/D#0039.md -------------------------------------------------------------------------------- /D#0039-用FCN做分割/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0039-用FCN做分割/images/225831.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0039-用FCN做分割/images/225831.png -------------------------------------------------------------------------------- /D#0039-用FCN做分割/images/232018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0039-用FCN做分割/images/232018.png -------------------------------------------------------------------------------- /D#0039-用FCN做分割/images/Selection_513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0039-用FCN做分割/images/Selection_513.png -------------------------------------------------------------------------------- /D#0039-用FCN做分割/images/Selection_514.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0039-用FCN做分割/images/Selection_514.png -------------------------------------------------------------------------------- /D#0039-用FCN做分割/images/Selection_515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0039-用FCN做分割/images/Selection_515.png -------------------------------------------------------------------------------- /D#0039-用FCN做分割/images/Selection_516.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0039-用FCN做分割/images/Selection_516.png -------------------------------------------------------------------------------- /D#0040-用U-Net做分割/D#0040.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0040-用U-Net做分割/D#0040.md -------------------------------------------------------------------------------- /D#0040-用U-Net做分割/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0040-用U-Net做分割/images/Selection_518.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0040-用U-Net做分割/images/Selection_518.png -------------------------------------------------------------------------------- /D#0040-用U-Net做分割/images/Selection_519.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0040-用U-Net做分割/images/Selection_519.png -------------------------------------------------------------------------------- /D#0040-用U-Net做分割/images/Selection_520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0040-用U-Net做分割/images/Selection_520.png -------------------------------------------------------------------------------- /D#0040-用U-Net做分割/images/Selection_521.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0040-用U-Net做分割/images/Selection_521.png -------------------------------------------------------------------------------- /D#0040-用U-Net做分割/images/Selection_522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0040-用U-Net做分割/images/Selection_522.png -------------------------------------------------------------------------------- /D#0040-用U-Net做分割/images/Selection_523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0040-用U-Net做分割/images/Selection_523.png -------------------------------------------------------------------------------- /D#0041-用RefineNet做分割/D#0041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0041-用RefineNet做分割/D#0041.md -------------------------------------------------------------------------------- /D#0041-用RefineNet做分割/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0041-用RefineNet做分割/images/Selection_525.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0041-用RefineNet做分割/images/Selection_525.png -------------------------------------------------------------------------------- /D#0041-用RefineNet做分割/images/Selection_526.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0041-用RefineNet做分割/images/Selection_526.png -------------------------------------------------------------------------------- /D#0041-用RefineNet做分割/images/Selection_527.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0041-用RefineNet做分割/images/Selection_527.png -------------------------------------------------------------------------------- /D#0041-用RefineNet做分割/images/Selection_528.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0041-用RefineNet做分割/images/Selection_528.png -------------------------------------------------------------------------------- /D#0041-用RefineNet做分割/images/Selection_529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0041-用RefineNet做分割/images/Selection_529.png -------------------------------------------------------------------------------- /D#0041-用RefineNet做分割/images/Selection_530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0041-用RefineNet做分割/images/Selection_530.png -------------------------------------------------------------------------------- /D#0042-用DeepLabv3+的Encoder-Decoder做分割/D#0042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0042-用DeepLabv3+的Encoder-Decoder做分割/D#0042.md -------------------------------------------------------------------------------- /D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/232018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/232018.png -------------------------------------------------------------------------------- /D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_518.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_518.png -------------------------------------------------------------------------------- /D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_531.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_531.png -------------------------------------------------------------------------------- /D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_532.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_532.png -------------------------------------------------------------------------------- /D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_533.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_533.png -------------------------------------------------------------------------------- /D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0042-用DeepLabv3+的Encoder-Decoder做分割/images/Selection_534.png -------------------------------------------------------------------------------- /D#0043-用HRNet做分割/D#0043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0043-用HRNet做分割/D#0043.md -------------------------------------------------------------------------------- /D#0043-用HRNet做分割/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0043-用HRNet做分割/images/154321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0043-用HRNet做分割/images/154321.png -------------------------------------------------------------------------------- /D#0043-用HRNet做分割/images/155806.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0043-用HRNet做分割/images/155806.png -------------------------------------------------------------------------------- /D#0043-用HRNet做分割/images/160639.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0043-用HRNet做分割/images/160639.png -------------------------------------------------------------------------------- /D#0043-用HRNet做分割/images/161658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0043-用HRNet做分割/images/161658.png -------------------------------------------------------------------------------- /D#0043-用HRNet做分割/images/232018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0043-用HRNet做分割/images/232018.png -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/D#0044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0044-用Network-Slimming做模型加速和压缩/D#0044.md -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/images/543.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0044-用Network-Slimming做模型加速和压缩/images/543.png -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/images/544.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0044-用Network-Slimming做模型加速和压缩/images/544.png -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/images/545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0044-用Network-Slimming做模型加速和压缩/images/545.png -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/images/546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0044-用Network-Slimming做模型加速和压缩/images/546.png -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/images/547.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0044-用Network-Slimming做模型加速和压缩/images/547.png -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/images/548.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0044-用Network-Slimming做模型加速和压缩/images/548.png -------------------------------------------------------------------------------- /D#0044-用Network-Slimming做模型加速和压缩/images/549.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0044-用Network-Slimming做模型加速和压缩/images/549.png -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/D#0045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/D#0045.md -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/556.png -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/557.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/557.png -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/558.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/558.png -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/560.png -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/561.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/561.png -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/562.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/562.png -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/563.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/563.png -------------------------------------------------------------------------------- /D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/564.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0045-Stacked-Hourglass-Network-for-Human-Pose-Estimation/images/564.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/D#0046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/D#0046.md -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/565.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/566.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/566.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/567.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/567.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/568.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/569.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/569.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/570.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/570.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/571.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/571.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/572.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/572.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/573.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/573.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/574.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/574.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/575.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/576.png -------------------------------------------------------------------------------- /D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/577.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0046-Anchor-Free第一篇CornerNet-Detecting-Objects-as-Paired-Keypoints/images/577.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/D#0047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/D#0047.md -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/565.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/575.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/575.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/580.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/580.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/581.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/581.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/582.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/582.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/583.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/583.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/584.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/584.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/585.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/585.png -------------------------------------------------------------------------------- /D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/586.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0047-Anchor-Free第二篇CornerNet的变种ExtremeNet/images/586.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/D#0048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/D#0048.md -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/122149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/122149.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/125313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/125313.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/130128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/130128.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/130954.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/130954.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/131049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/131049.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/131135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/131135.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/131329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/131329.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/565.png -------------------------------------------------------------------------------- /D#0048-Anchor-Free第三篇Objects-as-Points/images/580.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0048-Anchor-Free第三篇Objects-as-Points/images/580.png -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/D#0049.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/D#0049.md -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/180227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/180227.png -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/180345.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/180345.png -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/181626.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/181626.png -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/182402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/182402.png -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/183054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/183054.png -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/183111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/183111.png -------------------------------------------------------------------------------- /D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/184637.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0049-Anchor-Free第四篇CenterNet-Keypoint-Triplets-for-Object-Detection/images/184637.png -------------------------------------------------------------------------------- /D#0050-C++中浮点值做比较的正确方法/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/D#0050-C++中浮点值做比较的正确方法/code/main.cpp -------------------------------------------------------------------------------- /D#0050-C++中浮点值做比较的正确方法/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain1986/CaptainBlackboard/HEAD/README.md --------------------------------------------------------------------------------