Git Product home page Git Product logo

Comments (2)

myechona avatar myechona commented on August 28, 2024 1

自己写了个函数:

    if args.status == 'predict':
        line = "union select or 1=1"
        vocab = build_vocab(train_path, args.word, args.vocab_size, args.min_freq)
        n_vocab = len(vocab)
        model = Model(n_vocab, args.num_classes, args.embed, args.num_filters, args.filter_sizes, args.dropout).to(device)
        print(model.parameters)
        # print(model.predict(vocab, args.word, line))
        #predict(model, vocab, args.word, args.max_sequence_length, line, '1', device)

        if args.word:
            tokenizer = lambda x: x.split(' ')
        else:
            tokenizer = lambda x: [y for y in x]
        content = tokenizer(line)
        data = [vocab[x] for x in content if x in vocab]
        data = kr.preprocessing.sequence.pad_sequences([data], 32)

        tests = [np.asarray(data)]
        test_batch = Variable(torch.LongTensor(tests))

        # 其一
        predict = model(test_batch).data.max(1, keepdim=True)[1]
        label = predict[0][0]
        print(label)

        #其二
        outputs = model(test_batch)
        predic = torch.max(outputs.data, 1)[1].cpu().numpy()
        print(predic)

from chinese-text-classification-pytorch.

ArtificialZeng avatar ArtificialZeng commented on August 28, 2024

自己写了个函数:

    if args.status == 'predict':
        line = "union select or 1=1"
        vocab = build_vocab(train_path, args.word, args.vocab_size, args.min_freq)
        n_vocab = len(vocab)
        model = Model(n_vocab, args.num_classes, args.embed, args.num_filters, args.filter_sizes, args.dropout).to(device)
        print(model.parameters)
        # print(model.predict(vocab, args.word, line))
        #predict(model, vocab, args.word, args.max_sequence_length, line, '1', device)

        if args.word:
            tokenizer = lambda x: x.split(' ')
        else:
            tokenizer = lambda x: [y for y in x]
        content = tokenizer(line)
        data = [vocab[x] for x in content if x in vocab]
        data = kr.preprocessing.sequence.pad_sequences([data], 32)

        tests = [np.asarray(data)]
        test_batch = Variable(torch.LongTensor(tests))

        # 其一
        predict = model(test_batch).data.max(1, keepdim=True)[1]
        label = predict[0][0]
        print(label)

        #其二
        outputs = model(test_batch)
        predic = torch.max(outputs.data, 1)[1].cpu().numpy()
        print(predic)

在本项目中用不了

from chinese-text-classification-pytorch.

Related Issues (20)

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.