-
Updated
Jun 28, 2021 - Python
data-mining
Here are 3,632 public repositories matching this topic...
-
Updated
Nov 16, 2021
-
Updated
Oct 26, 2021 - Python
In gensim/models/fasttext.py:
model = FastText(
vector_size=m.dim,
vector_size=m.dim,
window=m.ws,
window=m.ws,
epochs=m.epoch,
epochs=m.epoch,
negative=m.neg,
negative=m.neg,
# FIXME: these next 2 lines read in unsupported FB FT modes (loss=3 softmax or loss=4 onevsall,
# or model=3 supervi
-
Updated
Jul 30, 2021 - Jupyter Notebook
-
Updated
Nov 15, 2021
usually, after trained model. i save model in cpp format with code:
cat_model.save_model('a', format="cpp")
cat_model.save_model('b', format="cpp")
but when my cpp need to use multi models.
in my main.cpp
#include "a.hpp"
#include "b.hpp"
int main() {
// do something
double a_pv = ApplyCatboostModel({1.2, 2.3}); // i want to a.hpp's model here
double b_pv
-
Updated
Nov 11, 2021 - Python
The official instructions say to use joblib for pickling PyOD models.
This fails for AutoEncoders, or any other TensorFlow-backed model as far as I can tell. The error is:
>>> dump(model, 'model.joblib')
...
TypeError: can't pickle _thread.RLock objects
Note that it's not sufficient to save the underlying Keras S

-
Updated
Oct 15, 2021
Unless I missed something, the documentation doesn't explain how to query document metadata (searching "site:montferret.dev metadata" through Google returned nothing, neither did grepping the source code).
As an example, I tried to query the og:url
metadata.
I tried variations of //meta[property='og:url']::attr(content)
, with or without the leading //
, and with or without the `attr(conte
The current test test_fit_idempotent
did not catch the bug in alan-turing-institute/sktime#1595 because the test checks two calls to fit
with the same arguments.
This fails to catch the case where, for instance, the resulting estimator behaves like after the first, but not the second fit
call.
A better test would call fit
twice, but with different arguments.
-
Updated
Feb 6, 2020
-
Updated
Nov 1, 2021 - Python
-
Updated
Nov 15, 2021 - HTML
-
Updated
Nov 17, 2021 - Python
-
Updated
Nov 17, 2021
-
Updated
Nov 10, 2021 - Java
-
Updated
Nov 4, 2021
-
Updated
Nov 14, 2021
-
Updated
Dec 28, 2020 - Python
-
Updated
Aug 12, 2021
-
Updated
Nov 17, 2021 - JavaScript
-
Updated
Sep 27, 2021 - C++
-
Updated
Jan 12, 2021
-
Updated
Jun 13, 2021 - D
-
Updated
Feb 12, 2019 - JavaScript
-
Updated
Nov 17, 2021 - Python
-
Updated
Nov 9, 2021 - Python
Improve this page
Add a description, image, and links to the data-mining topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the data-mining topic, visit your repo's landing page and select "manage topics."
Summary
mypy
shows some issues in LightGBM's Python package.mypy \ --exclude='python-package/compile/|python-package/build' \ --ignore-missing-imports \ python-package/
18 errors in 4 files (click me)