为了账号安全,请及时绑定邮箱和手机立即绑定

java 字符串中去除 数字 字母 符号&&N*1*senten.Length=>M*M

标签:
Java

字符串中去除 数字 字母 符号

String str = "今天1@天%。气^64很?不?错.心情6666很好。。。。。";
String str1 = str.replaceAll("[,。、|~!@#¥;【》‘“”、】《·\\-?:,:{}%……&*()\\=—+ A-Za-z0-9]","").trim().equals("");

N14=》M*M

    public static void preCNN(String modelPathName,String sentence) throws IOException {
        //分词
        String Participle = ANJS_Participle.ANJS_FC(sentence);
        String[] ReParticiple = Participle.trim().split(" ");               
        //词转向量
        Word2VEC vec = new Word2VEC();  
        vec.loadJavaModel("model/four_dimensional_My40d_");
        double[] reVec = new double[1600];      
        int toPreNum = 0;

        for (int i = 0; i < ReParticiple.length; i++) {
            float[] vecrDes = vec.getWordVector(ReParticiple[i].trim());//转向量
            if (vecrDes!=null) {
                for (int j = 0; j < vecrDes.length; j++) {
                    reVec[toPreNum] = vecrDes[j];
                    toPreNum++;
                }
            }

        }
        if (toPreNum!=0) {
            //N*1*=>M*M
            OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(new File("temp/txt2Vec2Array1600.txt")),"GBK") ;

            double[] toPre = new double[1600];
            for (int i = 0; i < toPre.length; i++) {
                toPre[i] = reVec[i%toPreNum];
                out.write(reVec[i%toPreNum]+",");
            }
            out.close();   //关闭写操作
        }else {
            System.out.println(sentence+"  《=  该句话无词向量。。。。。");
        }
    }
点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消