Projects STRLCPY LogonTracer Commits c40a9ba4
🤬
  • ■ ■ ■ ■
    docker/Dockerfile
    1  -FROM neo4j:4.2.13
     1 +FROM neo4j:4.2.19
    2 2   
    3 3  # ensure local python is preferred over distribution python
    4 4  ENV PATH /usr/local/bin:$PATH
    skipped 224 lines
  • ■ ■ ■ ■
    logontracer.py
    skipped 640 lines
    641 641   data_array[data_array == 4624] = 3
    642 642   data_array[data_array == 4625] = 4
    643 643   # model = hmm.GaussianHMM(n_components=3, covariance_type="full", n_iter=10000)
    644  - model = hmm.MultinomialHMM(n_components=3, n_iter=10000)
     644 + model = hmm.CategoricalHMM(n_components=3, n_iter=10000)
    645 645   # model.startprob_ = start_probability
    646 646   model.emissionprob_ = emission_probability
    647 647   model.fit(np.array([data_array], dtype="int").T, lengths)
    skipped 1223 lines
  • model/hmm.pkl
    Binary file.
  • ■ ■ ■ ■
    requirements.txt
    skipped 4 lines
    5 5  scipy
    6 6  changefinder
    7 7  flask
    8  -hmmlearn
     8 +hmmlearn>=0.2.8
    9 9  scikit-learn
    10 10  elasticsearch-dsl>=7.0.0,<8.0.0
    11 11   
Please wait...
Page is in error, reload to recover