Info

Open Website

Testing and Issues

You can test this app and submit issues during the testing period of the Data Clustering Contest contest.

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

Voting

16

Comments

# Build instructions for Debian:

apt-get install g++

# Fix file name case-sensitive issues:
find ./src -type f -exec sed -i -e 's/Config.cpp/config.cpp/g' {} \;

# Fix ‘setw’ was not declared in this scope (os specific / g++ version specific issue):
# Add "#include <iomanip>" to beginning of src/Playground.cpp after #pragma once

# Build command:
g++ src/main.cpp -lpthread -lstdc++fs -std=c++17 -O3 -o tgnews
About:
1. Languages - works (but have some mistakes)
2. News or not - not implemented
3. Categories - implemented but don't work because input directory is hardcoded
4. Threads - logic implemented but JSON output not implemented
5. Top - not implemented
You have not added any comments yet...
by rating

Issues

Fair Leopard Feb 28, 2020 at 15:11
Final score for this submission (out of 100):

Languages: 25.58
News EN: 0
News RU: 0
Categories EN: 0
Categories RU: 0
Threads EN: 0
Threads RU: 0
Unfortunately, this submission didn't get a high enough score to be evaluated for Top news (task 5).

These data reflect the relative accuracy, precision and speed of the algorithm as compared to the other submissions.
30
Fair Leopard Feb 6, 2020 at 16:03
In our preliminary tests, this submission received the following scores (out of 100):

Languages: 98
News EN: 87
News RU: 93
Categories EN: 0
Categories RU: 0
Threads EN: 0
Threads RU: 0

Unfortunately, this submission didn't get a high enough score for the final task (top news) to be evaluated.

This is not the final result, please stay tuned for updates. We apologize for the delay.
20
Fair Leopard Dec 16, 2019 at 16:09
#comment9992
We had to rebuild your binary and will apply relevant penalties during the final scoring.

We also had to fix the following issues before running the algorithm and will apply relevant penalties during the final scoring:
- can not open files in read-only source_dir
11
Funny Deer Dec 16, 2019 at 16:48
Funny Deer Dec 16 at 16:23
Thank you! I have found another one issue with categories stage. I hardcoded debug path instead real input argument. Its can be fixed with changing one line (if 2nd fix is possible):

main.cpp at 102 line:
getFilesListInDirectory(paths.samplesOneDay(), files);
to
getFilesListInDirectory(dir, files);
Fair Leopard Dec 12, 2019 at 16:56
We were unable to launch this submission due to the following reasons:
- unable to run MacOS binary under Debian GNU/Linux 10.1 (buster), x86-64
10
Funny Deer Dec 12, 2019 at 18:40
Sorry, I have sent binary built for MacOS. Please use build script from submission archive
Nobody added any issues yet...