机器学习 — k近邻算法
图片识别的难点 从上到下依次为角度不同,光照不同,大小不同,变形,背景的干扰,遮挡,种类不同。 KNN 阅读更多机器学习 — k近邻算法[…]
图片识别的难点 从上到下依次为角度不同,光照不同,大小不同,变形,背景的干扰,遮挡,种类不同。 KNN 阅读更多机器学习 — k近邻算法[…]
1 2 3 4 5 6 7 |
sudo pip install virtualenv # This may already be installed virtualenv .env # Create a virtual environment source .env/bin/activate # Activate the virtual environment pip install -r requirements.txt # Install dependencies # Work on the assignment for a while ... deactivate # Exit the virtual environment |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# encoding=utf-8 import json l = [u"礼义廉耻", u"鹤发童颜"] j = json.dumps(l, ensure_ascii=False, indent=2) # 中文 print(j) ''' [ "礼义廉耻", "鹤发童颜" ] ''' l = json.loads(j) print(l) ''' ['礼义廉耻', '鹤发童颜'] ''' # 保存到文件 with open('List.txt', 'w', encoding='utf-8') as f: json.dump(l, f, ensure_ascii=False) # 从文件读取 with open('List.txt', 'r') as f: a = json.load(f) print(a) ''' ['礼义廉耻', '鹤发童颜'] ''' |
参考资料 https://www.runoo阅读更多PYTHON – 处理json文件[…]
基础用法
1 2 3 4 5 6 7 |
In [1]: import logging In [2]: logging.info('hello world') In [3]: logging.warning('good luck') WARNING:root:good luck |
以下是logging模块中信息的阅读更多PYTHON – 使用logging记录日志[…]
近义词——词向量相似度 在求词向量相似度的时候经常会用到以下几种方法: 余弦相似度 曼哈顿距离(L1范数)阅读更多[更新中]NLP – 词向量近义词Word2Vec、GloVe和BERT[…]
无法提供摘要。这是一篇受保护的文章。
函数 类型 作用 tf.constant 常量 创建一个新常量 tf.Variable 变量 创建一个新变量 阅读更多TensorFlow函数 – Tensor的创建和初始化[…]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI 对话框(Dialog) - 动画</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.9.1.js"></script> <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css"> <script> $(function() { $( "#dialog" ).dialog({ autoOpen: false, show: { effect: "blind", duration: 1000 }, hide: { effect: "explode", duration: 1000 } }); $( "#opener" ).click(function() { $( "#dialog" ).dialog( "open" ); }); }); </script> </head> <body> <div id="dialog" title="Basic dialog"> <p>这是一个动画显示的对话框,用于显示信息。对话框窗口可以移动,调整尺寸,默认可通过 'x' 图标关闭。</p> </div> <button id="opener">打开对话框</button> </body> </html> |
参考 更多样式请参考: https://ww阅读更多jQuery – 对话框[…]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
//GET $.get(script_root + "/matches_info", function (data) { matches = $.parseJSON(JSON.stringify(data)); $('#matches-board').empty(); for (var i = 0; i <= matches['matches'].length - 1; i++) { var match_info = matches['matches'][i]; $('#matches-row').find(".category-challenges > .challenges-row").append(match_wrap); }; $('.match-button').click(function (e) { load_match(this.value); }); }); //POST $.post(script_root + '/create_team', { 'teamname': $(" input[ name='teamname' ] ").val(), 'nonce': $(" input[ name='nonce' ] ").val() }, function (data) { if (data == 'success') { parent.location.href="team"; } else { var content=data; ezal({ title: "失败", body: content, button:"确认" }); } }); |
函数 效果 hide() 隐藏 show() 显示 fadeIn() 淡入 fadeOut() 淡出 fade阅读更多jQuery – 动态效果的实现[…]