• 大小: 22KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-06
  • 语言: 其他
  • 标签: pytorch  torchtext  

资源简介

https://github.com/Shawn1993/cnn-text-classification-pytorch

资源截图

代码片段和文件信息

#!/usr/bin/env python
import os
import shutil
import sys
from setuptools import setup find_packages

VERSION = ‘0.1.1‘

long_description = ‘‘‘torch-text provides text and NLP data utilities
and datasets for torch‘‘‘

setup_info = dict(
    # metadata
    name=‘torchtext‘
    version=VERSION
    author=‘PyTorch core devs and James Bradbury‘
    author_email=‘jekbradbury@gmail.com‘
    url=‘https://github.com/pytorch/text‘
    description=‘text utilities and datasets for torch deep learning‘
    long_description=long_description
    license=‘BSD‘

    # Package info
    packages=find_packages(exclude=(‘test‘))

    zip_safe=True


setup(**setup_info)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-05-17 07:38  text-master\
     文件          84  2017-05-17 07:38  text-master\.gitignore
     文件        1536  2017-05-17 07:38  text-master\LICENSE
     文件        2838  2017-05-17 07:38  text-master\README.md
     文件          25  2017-05-17 07:38  text-master\requirements.txt
     文件         670  2017-05-17 07:38  text-master\setup.py
     目录           0  2017-05-17 07:38  text-master\test\
     文件           0  2017-05-17 07:38  text-master\test\.gitignore
     文件         707  2017-05-17 07:38  text-master\test\data.py
     文件         652  2017-05-17 07:38  text-master\test\snli.py
     文件        1097  2017-05-17 07:38  text-master\test\sstb.py
     文件        1092  2017-05-17 07:38  text-master\test\translation.py
     文件         245  2017-05-17 07:38  text-master\test\vocab.py
     目录           0  2017-05-17 07:38  text-master\torchtext\
     文件           0  2017-05-17 07:38  text-master\torchtext\.gitignore
     文件          62  2017-05-17 07:38  text-master\torchtext\__init__.py
     文件       26243  2017-05-17 07:38  text-master\torchtext\data.py
     目录           0  2017-05-17 07:38  text-master\torchtext\datasets\
     文件           0  2017-05-17 07:38  text-master\torchtext\datasets\.gitignore
     文件         190  2017-05-17 07:38  text-master\torchtext\datasets\__init__.py
     文件        3817  2017-05-17 07:38  text-master\torchtext\datasets\language_modeling.py
     文件        4527  2017-05-17 07:38  text-master\torchtext\datasets\sentiment.py
     文件        4969  2017-05-17 07:38  text-master\torchtext\datasets\snli.py
     文件        1415  2017-05-17 07:38  text-master\torchtext\datasets\translation.py
     文件         552  2017-05-17 07:38  text-master\torchtext\utils.py
     文件        6971  2017-05-17 07:38  text-master\torchtext\vocab.py

评论

共有 条评论