#A Collection of NLP notes
##N-grams
###Calculating unigram probabilities:
P( wi ) = count ( wi ) ) / count ( total number of words )
In english..
#A Collection of NLP notes
##N-grams
###Calculating unigram probabilities:
P( wi ) = count ( wi ) ) / count ( total number of words )
In english..
\documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$lang$,$endif$$if(papersize)$$papersize$,$endif$]{$documentclass$} | |
\usepackage[T1]{fontenc} | |
\usepackage{lmodern} | |
\usepackage{amssymb,amsmath} | |
\usepackage{euler} | |
\usepackage{ifxetex,ifluatex} | |
\usepackage{fixltx2e} % provides \textsubscript | |
% use microtype if available | |
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex | |
\IfFileExists{microtype.sty}{\usepackage{microtype}}{} |
httpClient.DefaultRequestHeaders.Authorization = | |
new AuthenticationHeaderValue( | |
"Basic", | |
Convert.ToBase64String( | |
System.Text.ASCIIEncoding.ASCII.GetBytes( | |
string.Format("{0}:{1}", username, password)))); |
#! /bin/bash | |
# Copyright 2017 hai liang wang <[email protected]> | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and |
#! /bin/bash | |
########################################### | |
# Test Wav file for xfyun api | |
# https://hub.docker.com/r/samurais/xfyun-api/ | |
########################################### | |
# constants | |
baseDir=$(cd `dirname "$0"`;pwd) | |
hostUri=localhost | |
port=9666 |
# install dependencies | |
RUN apt-get update && apt-get install -y \ | |
curl \ | |
npm \ | |
nodejs \ | |
git; | |
# compatibility fix for node on ubuntu | |
RUN ln -s /usr/bin/nodejs /usr/bin/node; |
#!/usr/local/bin/python3 | |
''' | |
Convert a pkl file into json file | |
''' | |
import sys | |
import os | |
import _pickle as pickle | |
import json | |
docker run \ | |
-ti \ | |
-d \ | |
--restart=always \ | |
--name shipyard-swarm-manager \ | |
swarm:latest \ | |
manage --host tcp://0.0.0.0:3375 etcd://172.29.31.152:4001 | |
https://shipyard-project.com/docs/deploy/manual/ | |
/** | |
* Database management | |
*/ | |
import * as mongoose from 'mongoose'; | |
import logging from './logging.service'; | |
import config from '../config/environment'; | |
const logger = logging.getLogger('database.service'); | |
mongoose.Promise = Promise; | |
// 链接数据库 |
<div id="app"></div> |