
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
We recommend using virtual environments, as some packages require an exact version.
If you only want to use the package do the following:
sudo apt-get install python3-pip, python3-venv, python3-dev
python3 -m venv rbenv
(create virutal environment named rbenv)source rbenv/bin/activate
(activate virtual env)pip3 uninstall setuptools && pip3 install setuptools && pip3 install --upgrade pip && pip3 install --no-cache-dir rbpy-rb
If you want to contribute to the code base of package:
sudo apt-get install python3-pip, python3-venv, python3-dev
git clone git@git.readerbench.com:ReaderBench/readerbenchpy.git && cd readerbenchpy/
python3 -m venv rbenv
(create virutal environment named rbenv)source rbenv/bin/activate
(activate virtual env)pip3 uninstall setuptools && pip3 install setuptools && pip3 install --upgrade pip
pip3 install -r requirements.txt
python3 nltk_download.py
python3 -m spacy download en_core_web_lg
If you want to install spellchecking (hunspell) also you need this non-python libraries:
sudo apt-get install libhunspell-1.6-0 libhunspell-dev hunspell-ro
pip3 install hunspell
For usage (parsing, lemmatization, NER, wordnet, content words, indices etc.) see file usage.py
from
https://github.com/readerbench/ReaderBench
You may also need some spacy models which are downloaded through spacy.
You have to download these spacy models by yourself, using the command:
python3 -m spacy download name_of_the_model
The logger will also write instructions on which models you need, and how to download them.
Our models are also available in the HuggingFace platform: https://huggingface.co/readerbench
You can use them directly from HuggingFace:
# tensorflow
from transformers import AutoModel, AutoTokenizer, TFAutoModel
tokenizer = AutoTokenizer.from_pretrained("readerbench/RoBERT-base")
model = TFAutoModel.from_pretrained("readerbench/RoBERT-base")
inputs = tokenizer("exemplu de propoziție", return_tensors="tf")
outputs = model(inputs)
# pytorch
from transformers import AutoModel, AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("readerbench/RoBERT-base")
model = AutoModel.from_pretrained("readerbench/RoBERT-base")
inputs = tokenizer("exemplu de propoziție", return_tensors="pt")
outputs = model(**inputs)
or from ReaderBench:
from rb.core.lang import Lang
from rb.processings.encoders.bert import BertWrapper
from tensorflow import keras
bert_wrapper = BertWrapper(Lang.RO, max_seq_len=128)
inputs, bert_layer = bert_wrapper.create_inputs_and_model()
cls_output = bert_wrapper.get_output(bert_layer, "cls") # or "pool"
# Add decision layer and compile model
# eg.
# hidden = keras.layers.Dense(..)(cls_output)
# output = keras.layers.Dense(..)(hidden)
# model = keras.Model(inputs=inputs, outputs=[output])
# model.compile(..)
bert_wrapper.load_weights() #must be called after compile
# Process inputs for model
feed_inputs = bert_wrapper.process_input(["text1", "text2", "text3"])
# feed_output = ...
# model.fit(feed_inputs, feed_output, ...)
In each file you have to initialize the logger:
from rb.utils.rblogger import Logger
logger = Logger.get_logger()
logger.info("info msg")
logger.warning("warning msg")
logger.error()
rm -r dist/
pip3 install twine wheel
./upload_to_pypi.sh
pip3 install xmltodict
EXPORT PYTHONPATH=/add/path/to/repo/readerbenchpy/
jsons
directory in readerbenchpy/rb/core/cscl/
cd rb/core/cscl/ && python3 csv_parser.py
ReaderBench is able to perform conversation analysis from chats and communities. Each utterance must have the time expressed in one of the following formats:
FAQs
ReaderBench library written in python
We found that rbpy-rb demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.