This commit is contained in:
Jakub Pokrywka 2021-04-26 14:20:28 +02:00
commit 60e7521dcc
8 changed files with 51034 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*~
*.swp
*.pyc

27
README.md Normal file
View File

@ -0,0 +1,27 @@
Cars challenge
==============
Predict the price of a car.
The following features are available:
* mileage
* year
* brand
* engine type
* engine capacity
Directory structure
-------------------
* `README.md` — this file
* `config.txt` — configuration file
* `train/` — directory with training data
* `train/train.tsv` — train set (48K entries)
* `dev-0/` — directory with dev (test) data
* `dev-0/in.tsv` — input data for the dev set
* `dev-0/expected.tsv` — expected (reference) data for the dev set
* `test-A` — directory with test data
* `test-A/in.tsv` — input data for the test set
* `test-A/expected.tsv` — expected (reference) data for the test set

1
config.txt Normal file
View File

@ -0,0 +1 @@
--precision 1

1000
dev-0/expected.tsv Normal file

File diff suppressed because it is too large Load Diff

1000
dev-0/in.tsv Normal file

File diff suppressed because it is too large Load Diff

1
names Normal file
View File

@ -0,0 +1 @@
price mileage year brand engineType engineCapacity

1000
test-A/in.tsv Normal file

File diff suppressed because it is too large Load Diff

48002
train/train.tsv Normal file

File diff suppressed because it is too large Load Diff