Compare commits
2 Commits
master
...
with-pictu
Author | SHA1 | Date | |
---|---|---|---|
076eaddfa7 | |||
8e5b6d5d4d |
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,6 +0,0 @@
|
||||
*~
|
||||
*.pyc
|
||||
|
||||
# Kopie zapasowe utworzone przez Visual Studio Code
|
||||
.vscode/
|
||||
*.vscode/
|
245
Apka/boisko.html
245
Apka/boisko.html
@ -1,245 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Football Field with Ball</title>
|
||||
<style>
|
||||
body {
|
||||
margin: 100px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: radial-gradient(blue, black);
|
||||
--line: 0.3em solid white;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
width: 120em;
|
||||
height: 80em;
|
||||
background-color: green;
|
||||
font-size: 5px;
|
||||
padding: 5em;
|
||||
}
|
||||
|
||||
.container span {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.field {
|
||||
border: var(--line);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
width: inherit;
|
||||
height: inherit;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.halfway-line {
|
||||
width: 60em;
|
||||
height: 80em;
|
||||
border-right: var(--line);
|
||||
}
|
||||
|
||||
.centre-circle,
|
||||
.penalty-arc {
|
||||
width: 20em;
|
||||
height: 20em;
|
||||
border: var(--line);
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
top: 30em;
|
||||
}
|
||||
|
||||
.centre-circle {
|
||||
left: calc((120em - 20em - 0.3em) / 2);
|
||||
}
|
||||
|
||||
.centre-mark {
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
background-color: white;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
top: calc(80em / 2 - 1em);
|
||||
left: calc(120em / 2 - 1em + 0.3em / 2);
|
||||
}
|
||||
|
||||
.penalty-mark {
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
background-color: white;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
top: calc(80em / 2 - 1em);
|
||||
left: calc(12em - 2em / 2);
|
||||
}
|
||||
|
||||
.penalty-area {
|
||||
width: 18em;
|
||||
height: 44em;
|
||||
border: var(--line);
|
||||
position: absolute;
|
||||
top: calc((80em - 44em) / 2);
|
||||
left: -0.3em;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
.penalty-arc {
|
||||
left: calc(12em - 20em / 2);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.goal-area {
|
||||
width: 6em;
|
||||
height: 20em;
|
||||
border: var(--line);
|
||||
position: absolute;
|
||||
top: calc((80em - 20em) / 2);
|
||||
left: -0.3em;
|
||||
}
|
||||
|
||||
.corner-arc {
|
||||
border: 1px solid blue;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.corner-arc::after,
|
||||
.corner-arc::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 5em;
|
||||
height: 5em;
|
||||
border: 0.3em solid white;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.corner-arc::before {
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.corner-arc::after {
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.right {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 50%;
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
||||
.football {
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
background-color: #FFD700;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.reset-button {
|
||||
position: absolute;
|
||||
top: -40px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
padding: 10px;
|
||||
background-color: #FFFFFF;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.info-button {
|
||||
position: absolute;
|
||||
top: -80px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
padding: 10px;
|
||||
background-color: #FFFFFF;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<button class="reset-button" onclick="resetField()">Reset</button>
|
||||
<button class="info-button" onclick="getBallPosition()">Pobierz pozycję piłki</button>
|
||||
<div class="field" id="footballField">
|
||||
<div class="left">
|
||||
<span class="halfway-line"></span>
|
||||
<span class="centre-circle"></span>
|
||||
<span class="centre-mark"></span>
|
||||
<span class="penalty-area"></span>
|
||||
<span class="penalty-mark"></span>
|
||||
<span class="penalty-arc"></span>
|
||||
<span class="goal-area"></span>
|
||||
<span class="corner-arc"></span>
|
||||
</div>
|
||||
|
||||
<div class="right">
|
||||
<span class="halfway-line"></span>
|
||||
<span class="centre-circle"></span>
|
||||
<span class="centre-mark"></span>
|
||||
<span class="penalty-area"></span>
|
||||
<span class="penalty-mark"></span>
|
||||
<span class="penalty-arc"></span>
|
||||
<span class="goal-area"></span>
|
||||
<span class="corner-arc"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function resetField() {
|
||||
var footballField = document.getElementById('footballField');
|
||||
var footballs = document.querySelectorAll('.football');
|
||||
|
||||
footballs.forEach(function (ball) {
|
||||
footballField.removeChild(ball);
|
||||
});
|
||||
}
|
||||
|
||||
function getBallPosition() {
|
||||
var ball = document.querySelector('.football');
|
||||
|
||||
if (ball) {
|
||||
var x = ball.style.left;
|
||||
var y = ball.style.top;
|
||||
alert('Pozycja piłki:\nX: ' + x + '\nY: ' + y);
|
||||
} else {
|
||||
alert('Piłka nie jest obecnie na boisku.');
|
||||
}
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
var footballField = document.getElementById('footballField');
|
||||
|
||||
footballField.addEventListener('click', function (event) {
|
||||
var x = event.clientX - footballField.getBoundingClientRect().left;
|
||||
var y = event.clientY - footballField.getBoundingClientRect().top;
|
||||
|
||||
var existingBall = document.querySelector('.football');
|
||||
if (!existingBall) {
|
||||
var ball = document.createElement('div');
|
||||
ball.className = 'football';
|
||||
ball.style.left = x + 'px';
|
||||
ball.style.top = y + 'px';
|
||||
|
||||
footballField.appendChild(ball);
|
||||
} else {
|
||||
alert('Możesz dodać tylko jedną piłkę!');
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
<!-- https://github.com/zhenfei666/a-football-pitch-CSS-/blob/master/soccer-pitch.html -->
|
79
Gui.py
79
Gui.py
@ -1,79 +0,0 @@
|
||||
# Import Module
|
||||
from tkinter import *
|
||||
import pickle
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
|
||||
#Styl
|
||||
tlo = "grey"
|
||||
guziki = "#60839D"
|
||||
|
||||
# Create Object
|
||||
root = Tk()
|
||||
root.geometry('1000x600')
|
||||
root.configure(bg=tlo)
|
||||
|
||||
def update():
|
||||
dane = [address1.__getattribute__,address2.__getattribute__,address3.__getattribute__]
|
||||
return None
|
||||
|
||||
#Wczytanie modelu
|
||||
model = pickle.load(open('mieszkania_model', 'rb'))
|
||||
|
||||
def cena_mieszkania(pokoje, metraz, rok):
|
||||
mieszkanie = pd.DataFrame([[pokoje, metraz, rok]], columns=['pokoje', 'metraz', 'rok'])
|
||||
cena = model.predict(mieszkanie).item()
|
||||
return np.round(cena, 2)
|
||||
|
||||
# Funkcja tworzy nowe okno ktore wyswietla predykcje ceny
|
||||
def Oblicz():
|
||||
newWindow = Toplevel(root)
|
||||
newWindow.geometry('600x300')
|
||||
newWindow.title("wynik")
|
||||
newWindow.config(bg=tlo)
|
||||
|
||||
# okno
|
||||
T4 = Label(newWindow,bg=tlo,fg="white",height=3,width=37, text = "Potencjalna cena mieszkania:", bd = 0, relief=RAISED).place(x = 100, y= 50)
|
||||
address1 = Label(newWindow,width=37,height=3,bg=guziki,text = wyznacz_cene()).place(x = 100, y= 100)
|
||||
update()
|
||||
return None
|
||||
|
||||
def reset():
|
||||
return None
|
||||
|
||||
Button(root,text="Oblicz",font="arial 20 bold",command=Oblicz ).place(x= 800, y=500)
|
||||
|
||||
#Pola do wpisywania
|
||||
|
||||
|
||||
# metraż
|
||||
|
||||
address1 = Text(root,width=37,height=3,bg=guziki)
|
||||
address1.place(x = 100, y= 100)
|
||||
T = Label(root,bg=tlo,fg="white",height=3,width=37, text = "Liczba Pokoi", bd = 0, relief=RAISED).place(x = 100, y= 50)
|
||||
|
||||
|
||||
# liczba pokoi
|
||||
address2 = Text(root,width=37,height=3,bg=guziki)
|
||||
address2.place(x = 100, y= 200)
|
||||
|
||||
T2 = Label(root,bg=tlo,fg="white",height=3,width=37, text = "Metraż", bd = 0, relief=RAISED).place(x = 100, y= 150)
|
||||
|
||||
# Rok budowy
|
||||
address3 = Text(root,width=37,height=3,bg=guziki)
|
||||
address3.place(x = 100, y= 300)
|
||||
|
||||
T3 = Label(root,bg=tlo,fg="white",height=3,width=37, text = "Rok Budowy", bd = 0, relief=RAISED).place(x = 100, y= 250)
|
||||
|
||||
Output = Text(root, height = 5,
|
||||
width = 25,
|
||||
bg = tlo)
|
||||
|
||||
def wyznacz_cene():
|
||||
pokoje = address1.get("1.0",END)
|
||||
metraz = address2.get("1.0",END)
|
||||
rok = address3.get("1.0",END)
|
||||
return cena_mieszkania(pokoje,metraz,rok)
|
||||
|
||||
# Execute Tkinter
|
||||
root.mainloop()
|
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@ -1,10 +0,0 @@
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Stage 1') {
|
||||
steps {
|
||||
echo 'Hello world!'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
BIN
Projekt1.png
Normal file
BIN
Projekt1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
BIN
Projekt2.png
Normal file
BIN
Projekt2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.3 KiB |
20
README.md
20
README.md
@ -1,20 +0,0 @@
|
||||
# fantastyczna_wycena Prototyp systemu informatycznego realizującego projekt dotyczący wyceny mieszkań
|
||||
|
||||
## Podstawowe informacje
|
||||
Celem projektu jest stworzenie aplikacji umożliwiającej użytkownikowi oszacowanie ceny mieszkania na podstawie
|
||||
najważniejszych zmiennych modelujących jego wartość takich jak liczba pokoi, metraż oraz rok budowy. W tym celu zaimplementowano
|
||||
model uczenia maszynowego opartego na regresji liniowej oraz stworzono przejrzysty interfejs użytkownika pozwalający
|
||||
na realizację usługi wyceny mieszkania.
|
||||
|
||||
## Jak używać?
|
||||
- Pobierz skrypt `GUI.py` z [repozytorium](https://git.wmi.amu.edu.pl/s478993/fantastyczna_wycena).
|
||||
- Wywołaj zawartość w celu uruchomienia aplikacji.
|
||||
- Wpisz w odpowiednich polach liczbę pokoi, metraż mieszkania oraz rok budowy na podstawie informacji o
|
||||
interesującym cię mieszkaniu.
|
||||
- Po uzupełnieniu wszystkich pól najedź myszką na pole „OBLICZ” znajdujące się w prawym dolnym rogu i kliknij na nie dwukrotnie.
|
||||
- Na ekranie pojawi się sugerowana cena mieszkania o interesujących Cię parametrach.
|
||||
|
||||
## Dodatkowe informacje
|
||||
Praca została wykonana w ramach zajęć z przedmiotu Systemy Informatyczne na kierunku Analiza i przetwarzanie
|
||||
danych Uniwersytetu im. Adama Mickiewicza w Poznaniu. Zespół składa sie z grupy studentów w składzie Alicja Lerczak, Adrian Szczeszek,
|
||||
Szymon Obst, Maciej Chmielarz, Łukasz Chrostowski.
|
BIN
Raport.pdf
BIN
Raport.pdf
Binary file not shown.
309
SysInf.ipynb
309
SysInf.ipynb
File diff suppressed because one or more lines are too long
@ -1,462 +0,0 @@
|
||||
373000
|
||||
299000
|
||||
365000
|
||||
369000
|
||||
483791
|
||||
430000
|
||||
312000
|
||||
397000
|
||||
302672
|
||||
325000
|
||||
302800
|
||||
300495
|
||||
375038
|
||||
437131
|
||||
373761
|
||||
337567
|
||||
359320
|
||||
326407
|
||||
294819
|
||||
266000
|
||||
355720.5
|
||||
288000
|
||||
239000
|
||||
385000
|
||||
349000
|
||||
804500
|
||||
520000
|
||||
315441
|
||||
339000
|
||||
429000
|
||||
325000
|
||||
269000
|
||||
420000
|
||||
400000
|
||||
420000
|
||||
385000
|
||||
617232
|
||||
399000
|
||||
328338
|
||||
596232
|
||||
339000
|
||||
293000
|
||||
289000
|
||||
330000
|
||||
499000
|
||||
419000
|
||||
219598
|
||||
341670
|
||||
351259
|
||||
319000
|
||||
211426
|
||||
309000
|
||||
299000
|
||||
349000
|
||||
508000
|
||||
270000
|
||||
333750
|
||||
724120
|
||||
485000
|
||||
274000
|
||||
242775
|
||||
415125
|
||||
269000
|
||||
535000
|
||||
497000
|
||||
357124
|
||||
830000
|
||||
675000
|
||||
399000
|
||||
550000
|
||||
245000
|
||||
219598
|
||||
365000
|
||||
435000
|
||||
254231
|
||||
359000
|
||||
485000
|
||||
469758
|
||||
382740
|
||||
499000
|
||||
279000
|
||||
283080
|
||||
298200
|
||||
339000
|
||||
239900
|
||||
341145
|
||||
310000
|
||||
369000
|
||||
327000
|
||||
259000
|
||||
1308456
|
||||
434358
|
||||
449000
|
||||
293000
|
||||
203000
|
||||
273000
|
||||
175000
|
||||
368938
|
||||
299000
|
||||
415000
|
||||
333000
|
||||
345000
|
||||
350000
|
||||
297987
|
||||
290696.04
|
||||
293571
|
||||
459000
|
||||
355000
|
||||
269000
|
||||
345000
|
||||
300000
|
||||
1156756
|
||||
242943.1
|
||||
486600
|
||||
305370
|
||||
318240
|
||||
340000
|
||||
316000
|
||||
300500
|
||||
335000
|
||||
227000
|
||||
399000
|
||||
1100000
|
||||
389000
|
||||
370000
|
||||
659000
|
||||
249000
|
||||
555000
|
||||
315205
|
||||
349000
|
||||
385000
|
||||
397005
|
||||
469000
|
||||
490000
|
||||
316900
|
||||
254500
|
||||
280000
|
||||
294588
|
||||
275000
|
||||
369000
|
||||
857514
|
||||
560000
|
||||
310000
|
||||
596232
|
||||
459000
|
||||
238000
|
||||
440000
|
||||
499000
|
||||
327104
|
||||
650000
|
||||
235000
|
||||
338200
|
||||
412000
|
||||
329000
|
||||
609631
|
||||
309000
|
||||
250000
|
||||
469000
|
||||
311122
|
||||
450000
|
||||
299000
|
||||
499000
|
||||
330400
|
||||
295000
|
||||
315500
|
||||
254500
|
||||
467700
|
||||
393750
|
||||
530000
|
||||
270000
|
||||
297987
|
||||
360400
|
||||
337567
|
||||
380000
|
||||
568600
|
||||
322010
|
||||
490824
|
||||
269548
|
||||
361745
|
||||
359371
|
||||
579900
|
||||
340000
|
||||
199000
|
||||
255000
|
||||
255000
|
||||
245000
|
||||
303204
|
||||
290000
|
||||
349000
|
||||
360000
|
||||
350000
|
||||
469064
|
||||
280000
|
||||
417000
|
||||
318032
|
||||
579000
|
||||
320000
|
||||
382060
|
||||
379000
|
||||
420000
|
||||
250000
|
||||
211500
|
||||
254280
|
||||
383000
|
||||
355696
|
||||
249000
|
||||
359000
|
||||
429000
|
||||
605000
|
||||
325949
|
||||
340000
|
||||
420000
|
||||
579215
|
||||
304900
|
||||
380000
|
||||
229000
|
||||
325000
|
||||
675000
|
||||
409000
|
||||
355000
|
||||
388447.5
|
||||
345015
|
||||
199000
|
||||
320292
|
||||
300841
|
||||
313000
|
||||
566999
|
||||
275000
|
||||
359371
|
||||
253000
|
||||
262000
|
||||
230000
|
||||
299000
|
||||
399000
|
||||
453040
|
||||
479000
|
||||
312000
|
||||
1100000
|
||||
308196
|
||||
355000
|
||||
336842
|
||||
248100
|
||||
352894
|
||||
242000
|
||||
330000
|
||||
315000
|
||||
299900
|
||||
454000
|
||||
325000
|
||||
499900
|
||||
369000
|
||||
429000
|
||||
244500
|
||||
661650
|
||||
357475
|
||||
321165
|
||||
330000
|
||||
404900
|
||||
1240000
|
||||
696000
|
||||
295000
|
||||
295000
|
||||
417000
|
||||
242300
|
||||
285000
|
||||
980000
|
||||
229000
|
||||
259786
|
||||
447496.2
|
||||
239617.2
|
||||
260000
|
||||
387000
|
||||
799000
|
||||
238638
|
||||
354944
|
||||
521683
|
||||
506600
|
||||
506363
|
||||
299000
|
||||
844990
|
||||
213000
|
||||
324900
|
||||
261000
|
||||
349000
|
||||
480000
|
||||
283000
|
||||
430000
|
||||
259786
|
||||
339000
|
||||
299000
|
||||
530000
|
||||
396683
|
||||
329000
|
||||
420863
|
||||
299000
|
||||
276458
|
||||
350286
|
||||
515000
|
||||
341670
|
||||
369000
|
||||
322000
|
||||
761976.07
|
||||
389000
|
||||
459999
|
||||
429000
|
||||
425000
|
||||
286000
|
||||
270000
|
||||
561636.5
|
||||
550625
|
||||
324836
|
||||
221976
|
||||
699000
|
||||
579000
|
||||
514000
|
||||
282000
|
||||
345000
|
||||
534508
|
||||
299000
|
||||
545000
|
||||
250000
|
||||
379000
|
||||
269000
|
||||
299000
|
||||
329000
|
||||
249976
|
||||
430000
|
||||
303086
|
||||
303000
|
||||
238400
|
||||
339000
|
||||
241500
|
||||
1100000
|
||||
399000
|
||||
530000
|
||||
972000
|
||||
359000
|
||||
250000
|
||||
329460
|
||||
239000
|
||||
490110
|
||||
468120
|
||||
378157
|
||||
285000
|
||||
235850
|
||||
499000
|
||||
235850
|
||||
365428
|
||||
670000
|
||||
320000
|
||||
279000
|
||||
388000
|
||||
324990
|
||||
570000
|
||||
348796
|
||||
287144
|
||||
272000
|
||||
267877
|
||||
255062
|
||||
650000
|
||||
364000
|
||||
530000
|
||||
570000
|
||||
284000
|
||||
339000
|
||||
435000
|
||||
280000
|
||||
1300000
|
||||
365428
|
||||
295000
|
||||
360000
|
||||
205000
|
||||
319000
|
||||
736450
|
||||
453040
|
||||
280500
|
||||
299000
|
||||
330000
|
||||
337110
|
||||
520000
|
||||
395000
|
||||
595000
|
||||
375000
|
||||
358575
|
||||
588000
|
||||
1025455
|
||||
245000
|
||||
238500
|
||||
1167400
|
||||
249000
|
||||
441000
|
||||
239000
|
||||
455000
|
||||
640000
|
||||
344250
|
||||
400000
|
||||
485000
|
||||
543617
|
||||
276000
|
||||
428400
|
||||
360315
|
||||
595000
|
||||
595000
|
||||
535000
|
||||
534600
|
||||
330000
|
||||
627810
|
||||
439000
|
||||
304945
|
||||
699000
|
||||
712164
|
||||
250000
|
||||
449000
|
||||
284859
|
||||
595350
|
||||
259000
|
||||
590000
|
||||
355000
|
||||
389000
|
||||
429000
|
||||
649000
|
||||
297987
|
||||
159761
|
||||
505505
|
||||
336676
|
||||
272764
|
||||
343876
|
||||
336290.5
|
||||
308035
|
||||
335226.5
|
||||
532317
|
||||
525937.5
|
||||
397720
|
||||
702150
|
||||
592020
|
||||
671488
|
||||
593000
|
||||
399000
|
||||
1800000
|
||||
288728
|
||||
393211
|
||||
789325
|
||||
453040
|
||||
345015
|
||||
519745
|
||||
400920
|
||||
2318580
|
||||
469728
|
||||
247154
|
||||
328828.5
|
||||
260927.5
|
||||
482729
|
||||
257328.5
|
||||
305923.5
|
||||
529623
|
||||
641395.58
|
||||
669606.91
|
||||
655544.02
|
||||
471397.97
|
||||
309958
|
||||
699000
|
||||
850000
|
|
462
dev-0/in.tsv
462
dev-0/in.tsv
File diff suppressed because one or more lines are too long
320
dev-0/out.tsv
320
dev-0/out.tsv
@ -1,320 +0,0 @@
|
||||
414006.21879144595
|
||||
277848.1711853198
|
||||
474235.65345391305
|
||||
627355.2246513709
|
||||
371964.1851091953
|
||||
304504.23902599514
|
||||
343785.69017303176
|
||||
433583.79777256446
|
||||
418385.9862785223
|
||||
380431.31246369146
|
||||
351316.93939088983
|
||||
350164.06441868935
|
||||
318661.11844928376
|
||||
313868.17163681425
|
||||
386832.5241396795
|
||||
419578.48190577235
|
||||
389824.487893536
|
||||
502983.88955025095
|
||||
569909.7672549533
|
||||
354028.0220618518
|
||||
449737.7935963841
|
||||
317361.05269891163
|
||||
395635.55392038496
|
||||
390394.7863542158
|
||||
302324.75769243715
|
||||
546113.4727472325
|
||||
318631.3920516218
|
||||
566726.5114679546
|
||||
311668.8676887534
|
||||
179428.80733787594
|
||||
388909.93225522176
|
||||
534026.5797456063
|
||||
451893.0113376591
|
||||
293799.628278526
|
||||
341982.7331777327
|
||||
338914.95830878615
|
||||
277125.8747374201
|
||||
229543.19502755115
|
||||
380703.33064256865
|
||||
519552.13015256124
|
||||
341449.65653046384
|
||||
651752.5603226181
|
||||
532686.4097615487
|
||||
247508.1022670986
|
||||
257570.12640721817
|
||||
897874.2846783828
|
||||
401273.2748877341
|
||||
790337.720979115
|
||||
538154.1516683083
|
||||
451796.91860338626
|
||||
510099.0183487572
|
||||
340955.7019114229
|
||||
565276.8219980451
|
||||
461332.24691097555
|
||||
489619.2109280783
|
||||
360168.6097001715
|
||||
335037.5001921756
|
||||
198126.94616185175
|
||||
320342.6631907006
|
||||
330980.88302760245
|
||||
324545.0299233077
|
||||
244956.53757306188
|
||||
406580.48251238326
|
||||
494493.92476542434
|
||||
406709.79051301046
|
||||
204796.17899543163
|
||||
343917.4802629377
|
||||
430442.66930385027
|
||||
359013.2280647359
|
||||
360895.91947454144
|
||||
330747.52787227347
|
||||
319507.33381430013
|
||||
365533.29618345806
|
||||
343629.61191688664
|
||||
936123.2909016432
|
||||
418822.9701915183
|
||||
363675.3669927567
|
||||
355039.22773494385
|
||||
314616.2957569156
|
||||
385335.743172928
|
||||
246235.30539906607
|
||||
404708.193512558
|
||||
705195.2977709956
|
||||
597403.5728394389
|
||||
462764.6109038461
|
||||
427374.3617083549
|
||||
370170.6728923749
|
||||
298388.9463333285
|
||||
844293.3026034916
|
||||
335846.1425606981
|
||||
193107.60688325367
|
||||
304286.7586117964
|
||||
233759.46256460203
|
||||
263208.78043211205
|
||||
538661.4743652444
|
||||
558199.8821702222
|
||||
468962.12010029797
|
||||
405688.6905825308
|
||||
509362.2883698647
|
||||
362117.66744658817
|
||||
496315.663496085
|
||||
349887.08206125465
|
||||
356253.57858706685
|
||||
439136.6877512967
|
||||
274430.6422336323
|
||||
238705.95639602537
|
||||
463398.2608853092
|
||||
345137.76245089085
|
||||
463512.73502394743
|
||||
340397.30574454484
|
||||
517214.14714726317
|
||||
343819.8480227024
|
||||
354028.0220618518
|
||||
259203.61249452084
|
||||
290528.2246519122
|
||||
286638.9720630967
|
||||
330747.52787227347
|
||||
352065.06351099117
|
||||
392816.9843739413
|
||||
494070.8416568721
|
||||
270434.3863479714
|
||||
400598.5043674002
|
||||
358875.9902176361
|
||||
218618.5972026484
|
||||
357683.91949533834
|
||||
274316.72539549926
|
||||
437932.3144042012
|
||||
402330.0816996179
|
||||
314760.4962932153
|
||||
499623.30673065176
|
||||
350271.5758681274
|
||||
503816.7614113288
|
||||
355659.0506338319
|
||||
387612.83217276516
|
||||
392816.9843739413
|
||||
319438.9689670468
|
||||
328736.5106672982
|
||||
458378.9216067109
|
||||
328880.68662964203
|
||||
787908.0029696841
|
||||
393777.62472968386
|
||||
550666.1508630854
|
||||
383917.8127110505
|
||||
359399.67123433854
|
||||
363266.11096678
|
||||
164417.33322418923
|
||||
335682.14398385165
|
||||
506731.47283995803
|
||||
358875.9902176361
|
||||
257803.48156254715
|
||||
318846.4149504979
|
||||
330980.88302760245
|
||||
301209.5143904146
|
||||
466486.87467394373
|
||||
787796.0846421933
|
||||
327869.48095655
|
||||
328285.6505238144
|
||||
335959.12634128635
|
||||
257462.1313791438
|
||||
365439.1528119154
|
||||
301808.4737956582
|
||||
298905.1565082383
|
||||
362902.4806535514
|
||||
437580.56181081804
|
||||
325750.9523021367
|
||||
650029.8704683743
|
||||
357009.1489750047
|
||||
332415.17180924653
|
||||
326848.32235238655
|
||||
669903.6479730126
|
||||
618334.7144564665
|
||||
425283.58551491704
|
||||
309596.95647831704
|
||||
515989.8679380249
|
||||
350957.25695103384
|
||||
696867.8903528783
|
||||
814937.1118023396
|
||||
270930.82305629086
|
||||
265240.63655677484
|
||||
304003.79577061906
|
||||
765639.6966586551
|
||||
246598.00265474967
|
||||
354732.51897984743
|
||||
431687.2301322713
|
||||
450856.5107189142
|
||||
461634.4750661508
|
||||
599472.5183819602
|
||||
314889.2715672937
|
||||
442511.7286758446
|
||||
199033.6306273772
|
||||
482042.38514538435
|
||||
366247.23787993286
|
||||
282019.92761063273
|
||||
261950.34337320342
|
||||
624848.7529435337
|
||||
405240.3125283257
|
||||
352215.69400994247
|
||||
254251.0890314423
|
||||
266433.1908577089
|
||||
350678.8333834617
|
||||
403380.43397489423
|
||||
342730.857297834
|
||||
348916.0051958044
|
||||
602688.5003342631
|
||||
457125.8736313123
|
||||
639416.4128505767
|
||||
297622.48995677405
|
||||
338312.9595137583
|
||||
385634.0480286868
|
||||
278860.46688546566
|
||||
346926.81864174595
|
||||
334641.2119130979
|
||||
286064.7503030009
|
||||
577058.0471237162
|
||||
1008423.201572286
|
||||
456482.3539664177
|
||||
347042.7094165655
|
||||
291717.7887109746
|
||||
482274.75809525605
|
||||
238623.23173964792
|
||||
270392.7576565079
|
||||
309879.8114978983
|
||||
285291.3312372465
|
||||
336064.1557014454
|
||||
342307.774189282
|
||||
272473.6054928305
|
||||
209225.4709207164
|
||||
336207.82351119677
|
||||
872532.7406930286
|
||||
436827.47351215896
|
||||
545221.1972387438
|
||||
404786.9702955631
|
||||
340678.7195539882
|
||||
181325.37497816887
|
||||
513624.61605038773
|
||||
483210.6608058505
|
||||
363266.11096678
|
||||
272696.0500855867
|
||||
251635.69876375725
|
||||
544081.665770482
|
||||
251635.69876375725
|
||||
381053.5928779021
|
||||
328837.0594275363
|
||||
306598.96309280535
|
||||
293518.21446908265
|
||||
1075728.544709206
|
||||
274630.34769188333
|
||||
270767.8066849017
|
||||
256103.60456467746
|
||||
276812.76059362874
|
||||
415048.1917413408
|
||||
430783.0277560246
|
||||
545221.1972387438
|
||||
780304.9150840649
|
||||
330980.88302760245
|
||||
398831.70373241394
|
||||
418605.4897773196
|
||||
1219320.7324937326
|
||||
273408.06699328753
|
||||
325144.5220551004
|
||||
762671.4883444891
|
||||
300912.2504137971
|
||||
454688.8417495976
|
||||
319507.33381430013
|
||||
726098.686927048
|
||||
566652.1907109148
|
||||
376173.9981096387
|
||||
615449.6802775869
|
||||
280697.58173043537
|
||||
740761.3986892225
|
||||
276316.3484592652
|
||||
326139.87756101834
|
||||
321987.5434192121
|
||||
479876.7895680857
|
||||
473654.5181525294
|
||||
663261.2250170922
|
||||
475244.37703772634
|
||||
441673.4431573008
|
||||
202496.78529181308
|
||||
448591.8813133836
|
||||
377530.50183950644
|
||||
729987.9395158635
|
||||
469026.47840049537
|
||||
398247.5781891593
|
||||
590043.6947443951
|
||||
440925.34361115564
|
||||
338370.4629463521
|
||||
282079.3804059562
|
||||
338244.61924046115
|
||||
622379.5125748783
|
||||
547651.8728796758
|
||||
964659.919245929
|
||||
412263.780044568
|
||||
518710.3708135097
|
||||
593254.6784184128
|
||||
200560.64614438312
|
||||
474469.00860924204
|
||||
362280.200239341
|
||||
353598.00083805574
|
||||
396894.54827979906
|
||||
396894.54827979906
|
||||
372158.90181493247
|
||||
395649.987451378
|
||||
579076.0024439353
|
||||
575653.4601657777
|
||||
424348.24010482756
|
||||
590812.6823581406
|
||||
468690.1510693333
|
||||
535283.0182938725
|
||||
621961.3349712002
|
||||
343616.21926503535
|
||||
373611.5228530292
|
||||
429097.55971519137
|
||||
284495.1484630306
|
||||
450700.94061536156
|
||||
570403.2723950855
|
||||
529181.6264056498
|
||||
384345.85999816004
|
||||
650439.1019203947
|
||||
561313.815478466
|
|
@ -1 +0,0 @@
|
||||
Subproject commit 242c10da9f5aa9be2878f9ca555eb4d4833f4710
|
BIN
mieszkania_model
BIN
mieszkania_model
Binary file not shown.
418
test-A/in.tsv
418
test-A/in.tsv
File diff suppressed because one or more lines are too long
418
test-A/out.tsv
418
test-A/out.tsv
@ -1,418 +0,0 @@
|
||||
445999.67965911236
|
||||
391984.1125128637
|
||||
361680.6835335919
|
||||
341889.6962620369
|
||||
330922.0039615771
|
||||
634737.8910288331
|
||||
334716.5394495516
|
||||
544120.7877987102
|
||||
514017.97276127804
|
||||
343119.78255671565
|
||||
396251.40437194426
|
||||
428870.60994855757
|
||||
350838.3513603867
|
||||
281450.7110318437
|
||||
336430.268103953
|
||||
348024.2132659517
|
||||
616847.3291202816
|
||||
350709.51741262455
|
||||
278860.46688546566
|
||||
392115.92717672605
|
||||
473509.7848896808
|
||||
268222.8207778621
|
||||
392460.80032854946
|
||||
289229.2162094747
|
||||
580154.1727568926
|
||||
342730.857297834
|
||||
458911.9982539797
|
||||
371296.87728549074
|
||||
239520.13667240366
|
||||
365458.5669502588
|
||||
740912.5373407663
|
||||
416821.8472439307
|
||||
892722.16357865
|
||||
275675.71121464577
|
||||
336064.1557014454
|
||||
519552.13015256124
|
||||
423792.9243304827
|
||||
395740.63242845703
|
||||
320343.2369199989
|
||||
512876.4919302864
|
||||
429375.9587088071
|
||||
412829.6634820318
|
||||
269782.9532653971
|
||||
411356.17895029066
|
||||
292088.35713944724
|
||||
357683.91949533834
|
||||
419912.53464568476
|
||||
324179.42567339283
|
||||
285053.54462990887
|
||||
593620.7908209204
|
||||
422227.1802132232
|
||||
264289.39183159894
|
||||
292653.1586950205
|
||||
427314.9089130312
|
||||
301268.4344591894
|
||||
406052.8195225806
|
||||
439991.89841588354
|
||||
325064.78764059395
|
||||
381104.182769208
|
||||
327869.48095655
|
||||
611045.6587239988
|
||||
364626.61171793286
|
||||
303810.0707961109
|
||||
523391.79962948477
|
||||
269109.0502259028
|
||||
419086.0763184652
|
||||
587462.936379245
|
||||
359862.4746743734
|
||||
318014.1168187184
|
||||
280024.22784628277
|
||||
272568.28159092204
|
||||
431114.98230886157
|
||||
430802.44189436827
|
||||
361580.5842522627
|
||||
359013.2280647359
|
||||
439492.9796182853
|
||||
314120.4327778942
|
||||
257511.12309080362
|
||||
342730.857297834
|
||||
391627.9284674714
|
||||
669791.7050715657
|
||||
582750.2321338747
|
||||
513809.9371255585
|
||||
431560.8782737879
|
||||
276001.32595549314
|
||||
384171.9576381545
|
||||
331603.16344181285
|
||||
397300.76491599204
|
||||
335187.19763358193
|
||||
281450.7110318437
|
||||
392357.7203311201
|
||||
202233.70373882237
|
||||
433180.9962831952
|
||||
293862.0126420371
|
||||
303215.54284287593
|
||||
894202.512503766
|
||||
727663.7835931405
|
||||
406709.79051301046
|
||||
282228.56154960673
|
||||
278983.80392812146
|
||||
356906.64270687336
|
||||
374792.77316341596
|
||||
323404.96572849713
|
||||
403577.6737726596
|
||||
314898.283295657
|
||||
344456.6029706551
|
||||
432908.4945256817
|
||||
625535.9830581741
|
||||
580191.7293245941
|
||||
320343.2369199989
|
||||
688449.1728355801
|
||||
351543.33185701864
|
||||
280775.3667822117
|
||||
297007.72138710576
|
||||
633573.5973414672
|
||||
220000.52012855862
|
||||
321043.3023859856
|
||||
348479.50486144447
|
||||
310177.0754745158
|
||||
347187.44267941406
|
||||
362902.4806535514
|
||||
295050.1109170057
|
||||
362113.23599457927
|
||||
388727.1178432866
|
||||
465239.80718228756
|
||||
192018.6161583853
|
||||
340816.0065490005
|
||||
352531.77382164914
|
||||
361267.03705835575
|
||||
411356.17895029066
|
||||
360781.91938876803
|
||||
425508.6269215704
|
||||
263208.78043211205
|
||||
256024.80320771597
|
||||
437025.24603647296
|
||||
263307.8879822125
|
||||
343678.752452892
|
||||
374792.77316341596
|
||||
349128.1375292423
|
||||
619210.6070712325
|
||||
405829.0088221638
|
||||
270434.3863479714
|
||||
436886.9263074824
|
||||
437813.40881355456
|
||||
590340.9587210123
|
||||
338308.52806174965
|
||||
307754.3447282412
|
||||
695930.4140365934
|
||||
450190.16867187433
|
||||
310851.84599484946
|
||||
266822.68984588864
|
||||
302101.30632026726
|
||||
277746.18121494446
|
||||
465805.71519370796
|
||||
273672.20585421263
|
||||
351457.25763052306
|
||||
921429.2791361171
|
||||
826142.590710137
|
||||
349905.4143177073
|
||||
754884.1202628403
|
||||
465805.71519370796
|
||||
315423.87267234037
|
||||
359235.7628081539
|
||||
446461.95851776144
|
||||
487459.11225588573
|
||||
201308.77026448445
|
||||
383650.2259841822
|
||||
432398.71431342326
|
||||
356906.64270687336
|
||||
430442.66930385027
|
||||
250332.25886931084
|
||||
501210.7081005261
|
||||
355643.1758927016
|
||||
300912.2504137971
|
||||
275616.8321486204
|
||||
273613.62053972855
|
||||
351457.25763052306
|
||||
362902.4806535514
|
||||
482274.75809525605
|
||||
301530.0748020427
|
||||
281450.7110318437
|
||||
435822.2142230822
|
||||
520255.251437125
|
||||
358462.3437423997
|
||||
304067.2551129991
|
||||
318475.82194806915
|
||||
519458.494933611
|
||||
1044571.5032449942
|
||||
372405.1168955639
|
||||
452622.2950487151
|
||||
388020.66341739753
|
||||
348583.64216680825
|
||||
310994.048020507
|
||||
839173.9637199971
|
||||
293795.19682651735
|
||||
404355.5242904227
|
||||
338759.3882052335
|
||||
374792.77316341596
|
||||
347315.7439006276
|
||||
393055.3282817842
|
||||
824121.6792477742
|
||||
412268.21149657667
|
||||
322268.9572286557
|
||||
297319.7290750502
|
||||
461163.7582084364
|
||||
405673.43871861114
|
||||
246598.00265474967
|
||||
304297.13644782035
|
||||
320402.11598602426
|
||||
1664682.592792336
|
||||
407691.41861278657
|
||||
325792.6219963494
|
||||
311786.8812246048
|
||||
468917.1172647602
|
||||
297468.8937899079
|
||||
683603.8601673767
|
||||
520255.251437125
|
||||
226685.6031293124
|
||||
239446.78307263623
|
||||
817208.6056012451
|
||||
367014.2679857849
|
||||
387500.8892713182
|
||||
312564.73174236785
|
||||
280775.3667822117
|
||||
415048.1917413408
|
||||
316201.7231901034
|
||||
382653.4948448322
|
||||
748952.1665634951
|
||||
339804.7763019523
|
||||
339804.7763019523
|
||||
367014.2679857849
|
||||
510902.1392382169
|
||||
277561.45844302815
|
||||
327537.52640371304
|
||||
519458.494933611
|
||||
430934.6745601611
|
||||
479429.36914538173
|
||||
1445489.912087625
|
||||
391177.06832398754
|
||||
354107.7810503144
|
||||
427077.0977317372
|
||||
466266.8875965099
|
||||
325792.6219963494
|
||||
355609.018043031
|
||||
394303.30425702897
|
||||
469586.90717774327
|
||||
285890.8479429954
|
||||
281450.7110318437
|
||||
339255.82491355296
|
||||
550338.6277622571
|
||||
725903.8964994419
|
||||
199033.6306273772
|
||||
361369.54332648683
|
||||
285855.6246402273
|
||||
520255.251437125
|
||||
527260.3375490019
|
||||
457715.4960796735
|
||||
533843.7653336707
|
||||
390461.1526908269
|
||||
222329.64022983913
|
||||
318661.11844928376
|
||||
324776.4111419504
|
||||
525656.0041300629
|
||||
433180.9962831952
|
||||
373980.6159716365
|
||||
346867.3658464225
|
||||
308679.910605561
|
||||
469259.3840769152
|
||||
550487.7924771148
|
||||
473584.220371339
|
||||
475244.37703772634
|
||||
345137.76245089085
|
||||
637096.7375277749
|
||||
513988.2463636163
|
||||
515761.9264401626
|
||||
408978.4510395536
|
||||
309013.3145136987
|
||||
420790.40934230015
|
||||
431709.51026209653
|
||||
367926.3005320709
|
||||
364032.0837646979
|
||||
535976.1702185716
|
||||
403052.37814751756
|
||||
354805.87257961486
|
||||
246598.00265474967
|
||||
310235.61164108734
|
||||
351457.25763052306
|
||||
438710.1649219645
|
||||
359235.7628081539
|
||||
517214.14714726317
|
||||
334369.2674560896
|
||||
301543.97560648667
|
||||
383771.638238064
|
||||
428702.60482465476
|
||||
645549.021494511
|
||||
374030.1990835287
|
||||
516891.055498444
|
||||
263208.78043211205
|
||||
318014.1168187184
|
||||
319313.1252611559
|
||||
430034.9036359233
|
||||
291687.55416072044
|
||||
355119.54402391147
|
||||
319507.33381430013
|
||||
316558.43996204436
|
||||
341964.4009212798
|
||||
631180.5929928543
|
||||
223835.66800281126
|
||||
372215.8233730644
|
||||
377949.17807000596
|
||||
341559.65006918064
|
||||
405906.7938739401
|
||||
450248.7048384459
|
||||
285028.8234135541
|
||||
327844.18601089716
|
||||
386494.11505023506
|
||||
613676.4742539055
|
||||
560688.4956744718
|
||||
351053.85783789936
|
||||
363437.5558114629
|
||||
284849.9158722416
|
||||
364632.08404908306
|
||||
377201.0539499046
|
||||
389765.56782476115
|
||||
325583.9880573752
|
||||
278057.3214220498
|
||||
398128.2886963091
|
||||
507027.36118314345
|
||||
424173.78044431703
|
||||
587745.30782019
|
||||
461332.24691097555
|
||||
273672.20585421263
|
||||
593903.2209355489
|
||||
450982.35442480515
|
||||
413511.22329326393
|
||||
316256.744533418
|
||||
318322.2257812028
|
||||
409543.7853216757
|
||||
469110.75208860636
|
||||
266433.764587007
|
||||
412056.2444162774
|
||||
260396.1081217709
|
||||
393465.6170417394
|
||||
395483.5969359146
|
||||
754884.1202628403
|
||||
557592.0762897539
|
||||
349901.5565949967
|
||||
519458.494933611
|
||||
386134.91618901514
|
||||
694483.7243343266
|
||||
330980.88302760245
|
||||
427314.9089130312
|
||||
305034.88273189776
|
||||
518684.56771526416
|
||||
182659.26382392086
|
||||
333163.29592934786
|
||||
700254.2926995158
|
||||
315423.87267234037
|
||||
347286.0175029659
|
||||
1070199.9989476474
|
||||
328388.68137333123
|
||||
260759.88725934527
|
||||
347494.6514419399
|
||||
373304.8140979328
|
||||
517214.14714726317
|
||||
381463.3816304279
|
||||
476695.62244239124
|
||||
829066.3384410855
|
||||
400457.4087975896
|
||||
400461.8402495985
|
||||
328200.9027828381
|
||||
997223.1458477266
|
||||
262782.29860552936
|
||||
173711.88468256942
|
||||
335822.46222348465
|
||||
611304.3333989368
|
||||
364032.0837646979
|
||||
309219.9745159866
|
||||
349517.06278812396
|
||||
316901.7886560904
|
||||
784184.3635661546
|
||||
270560.80378316017
|
||||
775488.6472626287
|
||||
453336.7694717385
|
||||
344130.9882298077
|
||||
526933.2229243331
|
||||
361180.38910256187
|
||||
337388.98367092153
|
||||
487303.5421523331
|
||||
487303.5421523331
|
||||
713662.474273405
|
||||
486340.9688626537
|
||||
352730.9711273075
|
||||
351053.85783789936
|
||||
412518.52327492647
|
||||
346867.9395757206
|
||||
367014.2679857849
|
||||
249092.1294928987
|
||||
372936.7523326955
|
||||
470245.85210485966
|
||||
370592.38036749535
|
||||
514047.69915894
|
||||
401550.83097446663
|
||||
419218.85813960014
|
||||
537090.4067411805
|
||||
300896.9739759213
|
||||
639199.4160150143
|
||||
1010305.5090798889
|
||||
493459.9553838703
|
||||
397743.79488943634
|
||||
371370.2308852584
|
||||
219456.02476612432
|
||||
306959.77656246466
|
||||
299103.4863330573
|
||||
343927.35947214044
|
||||
559751.1517537397
|
||||
509598.6993437705
|
||||
511183.57762161666
|
|
2547
train/train.tsv
2547
train/train.tsv
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user