Code Monkey home page Code Monkey logo

timenlp's Introduction

Python3 —— 时间关键词提取以及标准化

[TOC]

1. 新增说明

ryanInf版本与ryanlnf版本存在一些小问题,进行了修复,以及个性化地新增了几个功能。

(1)不能识别下星期下礼拜等和周相关的时间,已解决

(2)在windows下使用有问题,ryanInf给出的方案不能解决这个问题。解决方案:将其中的regex.txt文件放入python的site-packages下

  • 例如:D:\Users\Administrator\Anaconda3\Lib\site-packages\TimeConverter-1.0.0-py3.7.egg\resource\regex.txt

(3)新增关键词以及索引位置的提取,具体见TimeNormalizer.py

2. 说明

Time-NLP的python3版本,由于原作者sunfiyes的是python2版本,无法在python3上使用,故ryanlnf修改部分代码,使其可在Python3上使用,但运行发现存在一些bug,本人进行了修复,可能仍存在一些bug。

3. 安装方式

  • cd到当前目录
  • python setup.py install

说明:window下可能出现安装regex错误,可到https://www.lfd.uci.edu/~gohlke/pythonlibs/#regex下载对应版本的regex手动安装

4. 使用方法

将中文时间描述转换为三种标准的时间格式的时间字符串:

  • 时间点(timestamp,表示某一具体时间时间描述);

  • 时间量(timedelta,表示时间的增量的时间描述);

  • 时间区间(timespan,有具体起始和结束时间点的时间区间)。

运行代码:

python TestTime.py

TestTime.py代码与示例:

import time
import warnings
from TimeNormalizer import TimeNormalizer
from arrow.factory import ArrowParseWarning
warnings.simplefilter("ignore", ArrowParseWarning)


if __name__ == "__main__":
    tn = TimeNormalizer()
    while True:
        query = input("\nINPUT : ")
        ss = time.time()
        # target为待分析语句, timeBase为基准时间, 默认是当前时间
        # print("OUTPUT: ", tn.parse(target=query, timeBase="2019-02-03"))
        print("OUTPUT: ", tn.parse(target=query))
        print("TIME  : {0}ms!".format(round(1000 * (time.time() - ss), 3)))

输出:

  • 默认当前时间
INPUT :  昨天上午和2019年8月
OUTPUT:  [['昨天上午', (0, 4), '2020-03-23 10:00:00'], ['2019年8月', (5, 12), '2019-08-01 00:00:00']]
TIME  : 3.734ms!

INPUT : 看今天的新闻以及后天的疫情
OUTPUT:  [['今天', (1, 3), '2020-03-24 00:00:00'], ['后天', (7, 9), '2020-03-26 00:00:00']]
TIME  : 3.657ms!

INPUT : 二零20年9月二十4号我不在家
OUTPUT:  [['2020年9月24号', (0, 10), '2020-09-24 00:00:00']]
TIME  : 2.102ms!

INPUT : 周末在家
OUTPUT:  [['周7', (0, 2), '2020-03-29 00:00:00']]
TIME  : 1.847ms!

INPUT : 今天上午9点23分我到成都
OUTPUT:  [['今天上午9点23分', (0, 9), '2020-03-24 09:23:00']]
TIME  : 2.189ms!

INPUT : 昨晚7点你们在干嘛
OUTPUT:  [['昨晚7点', (0, 4), '2020-03-23 07:00:00']]
TIME  : 2.032ms!

INPUT : 2025年八月20日下午4点半
OUTPUT:  [['2025年8月20日下午4点半', (0, 15), '2025-08-20 16:30:00']]
TIME  : 3.341ms!
  • 自定义基准时间,如2019-02-03
INPUT : 昨天上午和2019年8月
OUTPUT:  [['昨天上午', (0, 4), '2019-02-02 10:00:00'], ['2019年8月', (5, 12), '2019-08-01 00:00:00']]
TIME  : 4.585ms!

INPUT : 看今天的新闻以及后天的疫情
OUTPUT:  [['今天', (1, 3), '2019-02-03 00:00:00'], ['后天', (7, 9), '2019-02-05 00:00:00']]
TIME  : 3.73ms!

关于节假日的增加方法:

  1. 在resource目录下的holi_lunar(阴历)或holi_solar(阳历)文件内按照格式加入新增的节日名称和日期
  2. 在resource目录下的regex.txt文件内加入相应节日的正则匹配,并删除regex.pkl缓存文件
  3. 在TimeUnit类中的norm_setHoliday方法同样加入节日的正则匹配

该功能完善中...

timenlp's People

Contributors

geekzhangwei avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

timenlp's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.