- 实词:名词、动词、形容词、状态词、区别词、数词、量词、代词
- 虚词:副词、介词、连词、助词、拟声词、叹词。
n 名词
nr 人名
# UPDATE IN 2020 | |
# You almost always will want to use the version at | |
# https://github.com/luispedro/imread, which is | |
# up-to-date and works with Python 3 | |
# Copyright: Luis Pedro Coelho <[email protected]>, 2012 |
#!/usr/bin/env bash | |
USERNAME= #改成你的读者卡号 | |
PASSWORD= #改成你的读者卡密码 | |
LOGINURL="http://192.168.180.11:8080/nlcwlan/QueryGuest" | |
PASSWORD=$(echo $PASSWORD|base64) | |
UA="Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)" |
""" | |
Implementations of: | |
Probabilistic Matrix Factorization (PMF) [1], | |
Bayesian PMF (BPMF) [2], | |
Modified BPFM (mBPMF) | |
using `pymc3`. mBPMF is, to my knowledge, my own creation. It is an attempt | |
to circumvent the limitations of `pymc3` w/regards to the Wishart distribution: |
import numpy as np | |
from keras.layers import Dense, Input | |
from keras.models import Model | |
x = Input((1,)) | |
y = Dense(1, activation ='linear')(x) | |
m = Model(x,y) | |
m.compile(loss = 'mse', optimizer='sgd') | |
_x = np.linspace(1,2, num = 1e3) |