Code Monkey home page Code Monkey logo

Comments (4)

zzzendurance avatar zzzendurance commented on August 19, 2024

你这个最后搞好了吗?

from chinese_sentiment.

KyleLeith-007 avatar KyleLeith-007 commented on August 19, 2024

你这个最后搞好了吗?

我换了个项目,不过你可以重写这个转换编码函数,参考这个:https://blog.csdn.net/juluwangriyue/article/details/109053440

from chinese_sentiment.

wxtrsrzrcj avatar wxtrsrzrcj commented on August 19, 2024

Traceback (most recent call last): File "···/chinese_sentiment-master/data/hotel_comment/raw_data/fix_coupus.py", line 30, in fix_corpus(POS, FIX_POS) File "···/chinese_sentiment-master/data/hotel_comment/raw_data/fix_coupus.py", line 15, in fix_corpus fix_s = s.decode('gb2312') AttributeError: 'str' object has no attribute 'decode' 代码如下: def fix_corpus(dir_s, dir_t): for item in os.listdir(dir_s): with open(os.path.join(dir_s, item), 'r',) as f: try: s = f.read() fix_s = s.decode('gb2312') except UnicodeDecodeError: try: fix_s = s.decode('gbk') except UnicodeDecodeError: fix_s = s.decode('gb2312', errors='ignore') with codecs.open(os.path.join(dir_t, item), 'w', encoding='utf8') as ff: ff.write(fix_s)

open里面打开文件的方式将‘r'改为’rb‘,二进制才能decode

from chinese_sentiment.

KyleLeith-007 avatar KyleLeith-007 commented on August 19, 2024

from chinese_sentiment.

Related Issues (10)

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.