Info

Testing and Issues

You can test this entry and submit issues during the testing period of the ML Competition contest.

Entries with serious issues will not be able to win the contest, but even minor issues might be important for overall results.

Voting

Comments

Hello!

I used libtglang.tar.gz instead of .so file.
Library language: Python 3.7.

The process to install right dependencies for sure on Debian 10 (important to have scikit-learn 1.2.1 and joblib 1.3.2 dependencies) is below in ISSUES section.
Easier installation is described in src/libtglang/README.md, but it can have problems because of package dependencies. 

Important Note: Model predicts the answer for the text for about 10ms (more information about the tests in "src/libtglang/algorithm/algorithm time estimation.ipynb"). The answer of the python library is longer, because this solution doesn’t have model files preloading, and it loads the model every time it executes. 

Thank you!
Debian 10
You have not added any comments yet...
by rating

Issues

Fair Leopard Nov 7, 2023 at 18:53
Unfortunately, this submission has been disqualified as we were unable to rebuild or run it.
10
Suave Toad Nov 7, 2023 at 19:49
But why? What error was there?
I gave the instruction for the build, it works on Debian 10. Did you follow them?
It was possible to run the solution. The solution had nice results while testing. Unfortunately, the submission didn't even run on your tests.
I'd ask you to be more attentive to participants in the future. Solutions may be imperfect, but we are here to clarify them, if you have some trouble in the build or run.
Most of all, as a participant, I want to know some feedback, not only the message about disqualification.
Thank you!
Fair Quokka Oct 26, 2023 at 23:22
This is an important message regarding your submission. We were unable to run your submission due to the following reason:
no libtglang.so found

You can provide further clarifications within the next 24 hours.
Suave Toad Oct 27, 2023 at 14:07
Hello!
I used libtglang.tar.gz instead of .so file. 

The process to install right dependencies for sure on Debian 10 (important to have scikit-learn 1.2.1 and joblib 1.3.2 dependencies):
----
sudo apt-get update 
sudo apt install curl 
curl -O https://repo.anaconda.com/archive/Anaconda3-2023.03-0-Linux-aarch64.sh 
source ~/anaconda3/bin/activate 
conda create -n venv 
conda activate venv 
conda install scikit-learn=1.2.1 
pip install joblib==1.3.2 
tar -zxvf libtglang.tar.gz 
cd libtglang-1.0.0 
python3 -m main tests/input_1.txt
----
tests/input_1.txt - example of the file path.
Debian 10
Nobody added any issues yet...