-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
173 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
LR: 0.00015 Scale: 0.42 | ||
0.5328661203384399 | ||
0.6925103664398193 | ||
0.6969958543777466 | ||
2.6342222625430622e-08 | ||
0.6203827261924744 | ||
0.7055454850196838 | ||
0.6871829032897949 | ||
0.7076613903045654 | ||
0.7101237177848816 | ||
0.6999033689498901 | ||
LR: 0.0003 Scale: 0.42 | ||
0.5149078965187073 | ||
3.7212257719687614e-09 | ||
0.5762770771980286 | ||
0.647400975227356 | ||
0.668533444404602 | ||
0.48211535811424255 | ||
0.6727656722068787 | ||
0.669792890548706 | ||
0.6599106192588806 | ||
0.3272610306739807 | ||
LR: 0.0001 Scale: 0.42 | ||
0.543988823890686 | ||
0.6076177954673767 | ||
0.4291623532772064 | ||
0.47379541397094727 | ||
0.5646342635154724 | ||
0.597223162651062 | ||
0.5686771869659424 | ||
0.6129987239837646 | ||
0.5954622030258179 | ||
0.6290056705474854 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
from typing import Dict, List | ||
from matplotlib import pyplot as plt | ||
|
||
|
||
def get_data_points(text_file: str) -> List[Dict]: | ||
data_points = [] | ||
|
||
with open(text_file) as data_file: | ||
for _ in range(3): | ||
dice_scores = [] | ||
name = data_file.readline().strip('\n') | ||
|
||
for i in range(10): | ||
dice_scores.append(float(data_file.readline())) | ||
|
||
data_points.append({'Name' : name, "Dice Scores" : dice_scores}) | ||
|
||
|
||
return data_points | ||
|
||
|
||
if __name__ == '__main__': | ||
results = get_data_points('data_points.txt') | ||
|
||
for result in results: | ||
plt.plot([epoch for epoch in range(1, 11)], result['Dice Scores'], label = result['Name']) | ||
|
||
plt.title('Dice Score - Validation Data') | ||
plt.xlabel('Epoch') | ||
plt.ylabel('Dice Score') | ||
plt.legend() | ||
plt.show() |
Empty file.
This file was deleted.
Oops, something went wrong.
Empty file.
Empty file.
Oops, something went wrong.