码迷,mamicode.com
首页 >  
搜索关键字:extract    ( 966个结果
MinIE: Open Information Extraction system, GROBID
https://github.com/uma-pi1/minie https://github.com/kermitt2/grobid https://github.com/mon95/Automatic-Metadata-Extraction-from-Scientific-Documents ...
分类:其他好文   时间:2020-06-23 01:11:11    阅读次数:65
postgresql 13位时间戳
SELECT CAST(EXTRACT(EPOCH FROM CURRENT_TIMESTAMP )* 1000 AS int8),to_char(to_timestamp(CAST(EXTRACT(EPOCH FROM CURRENT_TIMESTAMP )* 1000 AS int8) / 10 ...
分类:数据库   时间:2020-06-18 21:51:40    阅读次数:178
重构 重构手法
一. 重新组织函数 1. Extract Method 提炼函数 2. Inline Method 内联函数 3. Inline Temp 内联临时变量 4. Replace Temp with Query 以查询取代临时变量 5. Introduce Explaining 引入解释性变量 6. S ...
分类:其他好文   时间:2020-06-14 18:22:43    阅读次数:65
【httprunner使用02】参数化、.env环境变量、调用debugtalk.py文件的函数、关联、validate 断言
一、参数化 1)创建套件 config: name: 测试套件 testcases: # - name: test_demo_04 # testcase: testcases/20200610/test_demo_04.yml # parameters: # search_word: ['天天向上' ...
分类:Web程序   时间:2020-06-13 17:26:20    阅读次数:95
sklearn工具-python数据集操作API
一、python科学计算环境 Python库: pandas、numpy、scipy、Scikit-Image、Scikit-Learn、matplotlib 功能介绍 二、SKlearn算法库的顶层设计 SKlearn监督学习的各个模块 SKlearn无监督学习模块 SKlearn数据变换模块 S ...
分类:编程语言   时间:2020-06-11 21:42:17    阅读次数:97
Postgresql中时间戳与日期的相互转换(同样适用于GreenPlum)
--日期转时间戳 SELECT EXTRACT(epoch FROM NOW()); SELECT EXTRACT(epoch FROM CAST('2017-12-06 00:17:10' AS TIMESTAMP)); --时间戳转日期 SELECT TO_TIMESTAMP(151249063 ...
分类:数据库   时间:2020-06-11 21:24:05    阅读次数:177
vue打包
一、修改配置文件 1.build->utils.js 增加 :publicPath:'../../' // Extract CSS when that option is specified // (which is the case during production build) if (opt ...
分类:其他好文   时间:2020-06-06 14:25:25    阅读次数:86
webpack 生产环境配置(无注释)
const { resolve } = require('path') const MiniCssExtractPlugin =require('mini-css-extract-plugin') const HtmlWebpackPlugin = require('html-webpack-plu ...
分类:Web程序   时间:2020-06-06 11:22:41    阅读次数:85
提取pdf文档表格
import pdfplumber pdf=pdfplumber.open(',,,,,,,.pdf') first_page=pdf.pages[0] print(first_page.extract_text()) #打印第一页内容 #提取其中的表格 first_page.extract_tab ...
分类:其他好文   时间:2020-06-05 22:55:35    阅读次数:98
生产环境 webpack 配置
1 2 3 const {resolve} = require('path') 4 const MiniCssExtractPlugin = require('mini-css-extract-plugin') 5 const OptimizeCssAssetsWebpackPlugin = req ...
分类:Web程序   时间:2020-06-05 21:02:39    阅读次数:71
966条   上一页 1 ... 4 5 6 7 8 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!