Compare commits
37 Commits
with-pictu
...
master
Author | SHA1 | Date | |
---|---|---|---|
451df178f3 | |||
6968fdd0a8 | |||
6a8854a3c1 | |||
d8c3fb96f4 | |||
c47957e690 | |||
3911ba4ab8 | |||
eb4175d6b7 | |||
f670e0309a | |||
6feee7a0ce | |||
b501baf758 | |||
3b02e3d493 | |||
3661375381 | |||
5e2b9180e6 | |||
6446b71528 | |||
2a1dc01143 | |||
26cfe9ad90 | |||
5abc468ec9 | |||
f6e54ca0ea | |||
37a5cdb910 | |||
07f599d93c | |||
38098e1a5b | |||
f29d4ac126 | |||
d5804a0d50 | |||
fe1f40ad3b | |||
22830ada6f | |||
bfc273a69f | |||
2da006bb77 | |||
a18279e2d7 | |||
ae9b874477 | |||
93837a21f6 | |||
964190b5a5 | |||
7f01c792d5 | |||
726668b153 | |||
72f7e88bf7 | |||
d8d3d8376e | |||
a30f13450f | |||
5ecf43fd5c |
79
CenaMieszkaniaDesign.py
Normal file
79
CenaMieszkaniaDesign.py
Normal file
@ -0,0 +1,79 @@
|
||||
from tkinter import *
|
||||
import joblib
|
||||
import pandas as pd
|
||||
|
||||
root = Tk()
|
||||
|
||||
def calculate_price():
|
||||
# Get the selected values and entry input
|
||||
stan = selected_stan.get()
|
||||
liczba_pokoi = selected_liczba_pokoi.get()
|
||||
metraz = entry1.get()
|
||||
rynek = selected_rynek.get()
|
||||
|
||||
# Create a dictionary with the data
|
||||
data = {'stan': [stan], 'l pokoi': [liczba_pokoi], 'metraż': [metraz], 'rynek': [rynek]}
|
||||
|
||||
# Create a DataFrame from the dictionary
|
||||
X = pd.DataFrame(data)
|
||||
|
||||
# Load the model and make predictions
|
||||
loaded_model = joblib.load('ridge_model.sav')
|
||||
result = loaded_model.predict(X)
|
||||
result = result / float(metraz)
|
||||
|
||||
# Display the result
|
||||
result_label.config(text=f"Predicted Price: {result[0]:.2f} PLN")
|
||||
result_label.grid(row=6, column=1, padx=10, pady=5)
|
||||
|
||||
|
||||
root.geometry("500x500")
|
||||
root.title("Mieszkaneo")
|
||||
|
||||
root.maxsize(900, 600)
|
||||
root.config(bg="#C3DEED")
|
||||
|
||||
label1 = Label(root, text="Metraż", font=('Arial', 18))
|
||||
label1.grid(row=0, column=0, padx=10, pady=5)
|
||||
entry1 = Entry(root, font=('Arial', 18))
|
||||
entry1.grid(row=1, column=0, padx=10, pady=5)
|
||||
|
||||
label2 = Label(root, text="Rynek", font=('Arial', 18))
|
||||
label2.grid(row=0, column=1, padx=10, pady=5)
|
||||
rynek_options = ["pierwotny", "wtórny"]
|
||||
selected_rynek = StringVar()
|
||||
selected_rynek.set(rynek_options[0])
|
||||
|
||||
rynek_menu = OptionMenu(root, selected_rynek, *rynek_options)
|
||||
rynek_menu.config(font=('Arial', 18), bg='white', fg='black') # Kolory tła i tekstu
|
||||
rynek_menu.grid(row=1, column=1, padx=10, pady=5)
|
||||
|
||||
label3 = Label(root, text="Stan", font=('Arial', 18))
|
||||
label3.grid(row=2, column=0, padx=10, pady=5)
|
||||
stan_options = ["do zamieszkania", "do wykończenia","do remontu"]
|
||||
selected_stan = StringVar()
|
||||
selected_stan.set(stan_options[0])
|
||||
|
||||
stan_menu = OptionMenu(root, selected_stan, *stan_options)
|
||||
stan_menu.config(font=('Arial', 18), bg='white', fg='black') # Kolory tła i tekstu
|
||||
stan_menu.grid(row=3, column=0, padx=10, pady=5)
|
||||
|
||||
label4 = Label(root, text="Liczba Pokoi", font=('Arial', 18))
|
||||
label4.grid(row=2, column=1, padx=10, pady=5)
|
||||
liczba_pokoi_options = [str(i) for i in range(1, 5)]
|
||||
selected_liczba_pokoi = StringVar()
|
||||
selected_liczba_pokoi.set(liczba_pokoi_options[0])
|
||||
|
||||
liczba_pokoi_menu = OptionMenu(root, selected_liczba_pokoi, *liczba_pokoi_options)
|
||||
liczba_pokoi_menu.config(font=('Arial', 18), bg='white', fg='black') # Kolory tła i tekstu
|
||||
liczba_pokoi_menu.grid(row=3, column=1, padx=10, pady=5)
|
||||
|
||||
button = Button(root, text="Oblicz cenę mieszkania", font=('Arial', 18), command=calculate_price)
|
||||
button.config(bg='green', fg='white') # Kolory tła i tekstu
|
||||
button.grid(row=4, columnspan=2, padx=10, pady=10)
|
||||
|
||||
result_label = Label(root, text="", font=('Arial', 18))
|
||||
result_label.grid(row=5, columnspan=2, padx=10, pady=5)
|
||||
|
||||
|
||||
root.mainloop()
|
23
Jenkinsfile
vendored
Normal file
23
Jenkinsfile
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker { image 'python:3.10.6-slim-bullseye' }
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Building..'
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh 'check_flat_price.py'
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
echo 'Deploying....'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
1
Lab1_zad2.ipynb
Normal file
1
Lab1_zad2.ipynb
Normal file
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@
|
||||
# Projekt_wyceny_mieszkan
|
||||
Systemy Informatyczne - Laboratorium 1
|
||||
## Systemy Informatyczne - Laboratorium 1
|
||||
|
||||
Lider - Katarzyna Pierzyńska
|
||||
|
||||
@ -25,13 +25,13 @@ Typ pracownika: A1
|
||||
|
||||
Bartłomiej jest pracownikiem nastawionym na wykonanie zadania i posuwającym pracę do przodu. Motywuje go widoczny postęp wykonywanej pracy, lubi efektywnie wykorzystywać czas na wykonanie zadania i widzieć efekty swoich działań. Preferuje implementować swoje pomysły w życie i dopiero później rozwijać projekt o dalsze pomysły.
|
||||
|
||||
Podręcznik użytkownika do zadania 2
|
||||
## Podręcznik użytkownika do zadania 2
|
||||
|
||||
1. W celu uruchomienia programu przewidującego ceny mieszkania na podstawie jego podstawowych parametrów należy wejść w następujący link: https://colab.research.google.com/drive/1RDqiXalAJSScjc-JrW60DFmOZ9uExp97?usp=sharing .
|
||||
1. W celu uruchomienia programu przewidującego ceny mieszkania na podstawie jego podstawowych parametrów należy wejść w plik: Lab1_zad2.ipynb.
|
||||
|
||||
2. Następnie należy uruchomić program poprzez wciśnięcie przycisku run lub poprzez skrót klawiszowy Ctrl + Enter.
|
||||
|
||||
Podręcznik użytkownika do zadania 3
|
||||
## Podręcznik użytkownika do zadania 3
|
||||
|
||||
1. Aplikacja Mieszkaneo pozwala na łatwe, szybkie i dostosowane do indywidualnych potrzeb znalezienie mieszkania na sprzedaż.
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 297 KiB |
Binary file not shown.
Before Width: | Height: | Size: 174 KiB |
8
check_flat_price.py
Normal file
8
check_flat_price.py
Normal file
@ -0,0 +1,8 @@
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
|
||||
ceny = pd.read_csv('expected.tsv', sep='\t', header=None)
|
||||
|
||||
for cena in ceny:
|
||||
if cena < 0:
|
||||
print("cena ujemna, sprawdz cene")
|
462
dev-0/expected.tsv
Normal file
462
dev-0/expected.tsv
Normal file
@ -0,0 +1,462 @@
|
||||
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
Normal file
462
dev-0/in.tsv
Normal file
File diff suppressed because one or more lines are too long
BIN
ridge_model.sav
Normal file
BIN
ridge_model.sav
Normal file
Binary file not shown.
418
test-A/in.tsv
Normal file
418
test-A/in.tsv
Normal file
File diff suppressed because one or more lines are too long
418
test-A/out.tsv
Normal file
418
test-A/out.tsv
Normal file
@ -0,0 +1,418 @@
|
||||
426248.1950143345
|
||||
406577.60226190975
|
||||
343307.837438009
|
||||
344757.0699949808
|
||||
335436.23190777196
|
||||
627700.8803021135
|
||||
335039.88788041135
|
||||
525216.9925722838
|
||||
495606.36675859557
|
||||
325786.3043337852
|
||||
379765.31383372773
|
||||
430106.5099435335
|
||||
353136.0720911228
|
||||
268312.96615313255
|
||||
319206.1652640768
|
||||
369470.84812888596
|
||||
610102.833952893
|
||||
400076.14612753
|
||||
276138.75011155196
|
||||
443681.3236853633
|
||||
483090.84725852
|
||||
270578.56381593324
|
||||
390333.6834238267
|
||||
292957.6031322757
|
||||
570814.0844161469
|
||||
330653.06925031776
|
||||
455942.70616325387
|
||||
376867.0692282704
|
||||
243812.70586949727
|
||||
356196.6018909872
|
||||
703863.5284511703
|
||||
382853.51205147814
|
||||
938652.5945825168
|
||||
261510.65943866887
|
||||
331214.2256305808
|
||||
511210.5496399403
|
||||
423605.0538091538
|
||||
423030.11962651316
|
||||
323562.9011309198
|
||||
498752.6685078705
|
||||
431369.78025499074
|
||||
427748.6602271691
|
||||
262085.3105451566
|
||||
403059.8796062449
|
||||
277654.95413295366
|
||||
338640.5294932157
|
||||
423220.31789383857
|
||||
302987.5270151275
|
||||
269750.6959233481
|
||||
616722.031414113
|
||||
408849.60563685343
|
||||
253745.64991667902
|
||||
292192.4706823096
|
||||
428576.24504360126
|
||||
311243.9856103126
|
||||
492045.06661345554
|
||||
421810.4268045311
|
||||
304594.30516005633
|
||||
362169.4371748395
|
||||
309069.245147192
|
||||
597032.8468608503
|
||||
392424.82162786904
|
||||
318895.31010997365
|
||||
579040.3430984485
|
||||
187515.19757513213
|
||||
395983.48928922456
|
||||
572154.1510487535
|
||||
365619.62221376866
|
||||
322987.9669482792
|
||||
294487.8680322079
|
||||
293532.5373149163
|
||||
418362.528605567
|
||||
332544.9686210408
|
||||
335874.3796235594
|
||||
332477.495942038
|
||||
433932.172193364
|
||||
317441.841531191
|
||||
314220.91315109876
|
||||
325403.7381088022
|
||||
372765.4367617039
|
||||
648097.26403684
|
||||
562478.942885633
|
||||
502374.354687998
|
||||
441583.49669302505
|
||||
266485.9069776278
|
||||
371420.85103113344
|
||||
312741.88090702926
|
||||
324893.6441213798
|
||||
366410.31832902157
|
||||
285306.27863261465
|
||||
374219.1884166395
|
||||
245129.45291915964
|
||||
413771.73390577035
|
||||
260432.32005690172
|
||||
213949.4388762949
|
||||
933944.05855588
|
||||
708804.9199985203
|
||||
474293.993774242
|
||||
274327.4297446143
|
||||
255964.2509454278
|
||||
361244.5894465843
|
||||
377122.172628547
|
||||
252206.06137460005
|
||||
395408.5551065839
|
||||
318206.97398115706
|
||||
347282.007079869
|
||||
426013.853105228
|
||||
643425.4369940829
|
||||
600538.6783283167
|
||||
323562.9011309198
|
||||
758538.529246317
|
||||
334316.4463057412
|
||||
260293.13630701895
|
||||
300608.92763193673
|
||||
613207.2243183856
|
||||
224860.81508529256
|
||||
325719.04979320255
|
||||
363539.9867964826
|
||||
338865.55013024184
|
||||
346326.67636257736
|
||||
348047.1395298351
|
||||
326929.4839107706
|
||||
341281.3212907649
|
||||
374917.0663260229
|
||||
455086.9995897607
|
||||
244403.6619368579
|
||||
336379.9545130181
|
||||
335044.4069783751
|
||||
363467.9926494497
|
||||
403059.8796062449
|
||||
435770.3766874619
|
||||
423227.0066821345
|
||||
273562.29729464813
|
||||
292957.6031322757
|
||||
440053.2317930928
|
||||
245563.25180000544
|
||||
346516.8746299029
|
||||
377122.172628547
|
||||
341849.2836089567
|
||||
613163.3637527574
|
||||
403869.15569799213
|
||||
251837.33788972747
|
||||
432134.91270495683
|
||||
448469.68874272
|
||||
570814.0844161469
|
||||
319470.2442926143
|
||||
322530.7740924787
|
||||
758538.529246317
|
||||
476589.39112414035
|
||||
239122.29648017968
|
||||
270668.85486330744
|
||||
323562.9011309198
|
||||
259029.5829194089
|
||||
456619.1511038721
|
||||
265910.97279498714
|
||||
342424.21779159736
|
||||
980350.4264914903
|
||||
886621.7013706424
|
||||
330989.20499355474
|
||||
730082.2908958739
|
||||
468363.1324418386
|
||||
288864.9462939702
|
||||
361819.5236292249
|
||||
424986.81131705653
|
||||
472279.0857390433
|
||||
182861.73237044946
|
||||
367370.16814427683
|
||||
423030.11962651316
|
||||
361244.5894465843
|
||||
410945.5460150125
|
||||
151593.31389438972
|
||||
501263.82779038104
|
||||
338104.9367782395
|
||||
292957.6031322757
|
||||
281035.31471518206
|
||||
191454.54484729152
|
||||
342424.21779159736
|
||||
336303.15819186857
|
||||
464270.47560353315
|
||||
289145.7186848228
|
||||
183919.07506029145
|
||||
491892.0401234623
|
||||
521922.4039394658
|
||||
261387.6507741933
|
||||
290905.52331974485
|
||||
298357.39084766654
|
||||
499241.8307411007
|
||||
1015165.8395791271
|
||||
400076.14612753
|
||||
463772.33774204203
|
||||
380105.90610726184
|
||||
354525.20168926014
|
||||
311243.9856103126
|
||||
835626.708425568
|
||||
279085.3118129346
|
||||
396173.68755655
|
||||
319781.0994467174
|
||||
365378.19129058043
|
||||
328197.55639634456
|
||||
380680.8402899025
|
||||
806869.3364188878
|
||||
395408.5551065839
|
||||
303560.2915074361
|
||||
216244.83622619318
|
||||
517829.74710116035
|
||||
408965.46034951444
|
||||
225938.68930354103
|
||||
353442.4081472621
|
||||
301723.9736275174
|
||||
1769654.5528055253
|
||||
409234.34155216865
|
||||
330639.29144794017
|
||||
303402.46284332615
|
||||
459679.68090373656
|
||||
300608.92763193673
|
||||
682600.2184323473
|
||||
510178.4226014993
|
||||
231188.0204450566
|
||||
245456.65579175833
|
||||
851613.3541730422
|
||||
369470.84812888596
|
||||
383983.08408910804
|
||||
315911.5766312587
|
||||
265542.46744853456
|
||||
388332.1647895635
|
||||
302841.589539216
|
||||
388038.00299777545
|
||||
750312.2705640153
|
||||
319470.2442926143
|
||||
331214.2256305808
|
||||
369470.84812888596
|
||||
490825.3737914736
|
||||
269736.6350448176
|
||||
311818.9197929533
|
||||
499241.8307411007
|
||||
410449.2947677006
|
||||
453512.40896068164
|
||||
1491915.8128484944
|
||||
384198.56294556736
|
||||
342614.4160589228
|
||||
422455.18544387247
|
||||
456619.1511038721
|
||||
318895.31010997365
|
||||
335619.34116101573
|
||||
433665.17760488903
|
||||
455930.8149750555
|
||||
270578.56381593324
|
||||
285306.27863261465
|
||||
321005.31136666314
|
||||
542504.183767401
|
||||
707494.6530530112
|
||||
231747.00713498745
|
||||
346783.5861422249
|
||||
298046.53569356346
|
||||
420535.2003671426
|
||||
531996.5886137316
|
||||
437036.56255885656
|
||||
536306.8939988285
|
||||
376867.0692282704
|
||||
226903.27872524637
|
||||
299275.54978762585
|
||||
321548.276171874
|
||||
506318.22105812107
|
||||
425515.71524373686
|
||||
428884.184637767
|
||||
343278.03775091143
|
||||
302062.39621071937
|
||||
468363.1324418386
|
||||
525481.0716008213
|
||||
476014.45694149967
|
||||
456619.1511038721
|
||||
343048.49801592156
|
||||
629040.9469347202
|
||||
494841.23430862953
|
||||
575214.680848618
|
||||
399501.2119448894
|
||||
295560.94007633964
|
||||
401339.4164389873
|
||||
433665.17760488903
|
||||
361819.5236292249
|
||||
365378.19129058043
|
||||
529573.7284391269
|
||||
421880.25126123184
|
||||
341058.8705698568
|
||||
231188.0204450566
|
||||
303592.66111065156
|
||||
342424.21779159736
|
||||
440551.369654584
|
||||
350075.5422912584
|
||||
495450.7077848179
|
||||
313010.7621096835
|
||||
280722.1727211139
|
||||
365037.59901704633
|
||||
473603.20487894036
|
||||
680802.9589439402
|
||||
353136.0720911228
|
||||
509603.4884188586
|
||||
273562.29729464813
|
||||
322987.9669482792
|
||||
305902.1193390804
|
||||
440818.36424305895
|
||||
317455.90240972146
|
||||
334893.550178714
|
||||
317135.7885512045
|
||||
310555.649481496
|
||||
318895.31010997365
|
||||
614630.8932100707
|
||||
242191.8668460379
|
||||
356122.7211297751
|
||||
369470.84812888596
|
||||
322535.5762665954
|
||||
395983.48928922456
|
||||
441316.5021045501
|
||||
290293.41735977196
|
||||
315273.90700599906
|
||||
367715.5625919277
|
||||
606979.5687104097
|
||||
558571.9652166893
|
||||
338839.9864649551
|
||||
361819.5236292249
|
||||
265036.95749680884
|
||||
344494.8775806225
|
||||
357726.86679091945
|
||||
373029.5157902415
|
||||
306085.2285923242
|
||||
264584.96704091085
|
||||
400076.14612753
|
||||
507194.6891227844
|
||||
424750.58279377077
|
||||
637190.4092958723
|
||||
445142.16435438057
|
||||
265910.97279498714
|
||||
574185.4693701144
|
||||
438114.8370028908
|
||||
467521.203670723
|
||||
301183.86181457737
|
||||
317441.841531191
|
||||
389408.15239363274
|
||||
464537.4701920081
|
||||
257074.77784304472
|
||||
411710.6784649786
|
||||
228985.37636329493
|
||||
385461.8332570246
|
||||
385730.71445967874
|
||||
730082.2908958739
|
||||
546904.7801998722
|
||||
340893.95289166516
|
||||
499241.8307411007
|
||||
373347.4599584263
|
||||
661626.0475227094
|
||||
312129.7749470564
|
||||
428576.24504360126
|
||||
289439.88047661085
|
||||
517254.81291851966
|
||||
174670.01298169547
|
||||
315992.6089742191
|
||||
700694.5160288796
|
||||
296827.12594773434
|
||||
344425.73642586055
|
||||
1064591.509232758
|
||||
310560.1685794598
|
||||
266421.2849208296
|
||||
340242.5054640279
|
||||
357193.9065597277
|
||||
507194.6891227844
|
||||
361786.8709498565
|
||||
467331.0054033976
|
||||
815656.4684052996
|
||||
388907.0989722042
|
||||
403839.07293474156
|
||||
322987.9669482792
|
||||
977876.438986312
|
||||
268410.6292907414
|
||||
221343.09242962772
|
||||
340256.5663425584
|
||||
587266.6017807502
|
||||
377122.172628547
|
||||
314089.03655371774
|
||||
342231.84983393975
|
||||
303530.2087441855
|
||||
784719.8368375353
|
||||
262850.44299512275
|
||||
824530.1182107272
|
||||
432485.1093267243
|
||||
332030.30766025675
|
||||
593040.380318649
|
||||
365199.8842114534
|
||||
319168.9934867446
|
||||
466876.7281075345
|
||||
466876.7281075345
|
||||
691250.7342149281
|
||||
484780.8274367414
|
||||
332788.35109614115
|
||||
333590.6553234395
|
||||
410449.2947677006
|
||||
345872.1159905615
|
||||
357726.86679091945
|
||||
152089.5651417016
|
||||
354135.5464501954
|
||||
449853.6159409549
|
||||
374457.9868560432
|
||||
501620.83035007736
|
||||
404910.2583646941
|
||||
399660.9272231785
|
||||
517565.66807262274
|
||||
292690.60854380066
|
||||
617760.84724085
|
||||
993932.3292474017
|
||||
475140.1585671684
|
||||
397632.2413856023
|
||||
369973.78816449374
|
||||
225792.7518276295
|
||||
304900.35814004275
|
||||
297172.5203953851
|
||||
327316.56923371746
|
||||
538875.6916493447
|
||||
507658.2876907278
|
||||
481325.84022369556
|
|
2547
train/train.tsv
Normal file
2547
train/train.tsv
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user