Skip to content

Commit 6f8f6ad

Browse files
committed
latest fits
1 parent f3642ad commit 6f8f6ad

File tree

256 files changed

+508745
-148956
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+508745
-148956
lines changed
335 Bytes
Binary file not shown.
1000 KB
Loading

example/predict/AR/comp_norm/plot_ar_vs_predicted.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ data <- read.csv("predict_data_AR.csv")
99
ggplot(data, aes(x = AR, y = predicted)) +
1010
geom_point(color = 'blue', alpha = 0.6) + # Adds points with some transparency
1111
geom_abline(intercept = 0, slope = 1, color = 'red', linetype = "dashed") + # Adds the y=x reference line
12-
labs(title = "Comparison of AR values and Predicted values",
13-
x = "AR values (Real)",
12+
labs(
13+
x = "Actual Values",
1414
y = "Predicted values") +
1515
theme_minimal() +
1616
theme(plot.title = element_text(hjust = 0.5))
1717

1818
# Save the plot as a PNG file
19-
ggsave("ar_vs_predicted_comparison_plot.png")
19+
ggsave("ar_comp.png")
2020

-185 Bytes
Binary file not shown.
685 KB
Loading

example/predict/AR/uncomp_norm/plot_ar_vs_predicted.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ data <- read.csv("predict_data_AR.csv")
99
ggplot(data, aes(x = AR, y = predicted)) +
1010
geom_point(color = 'blue', alpha = 0.6) + # Adds points with some transparency
1111
geom_abline(intercept = 0, slope = 1, color = 'red', linetype = "dashed") + # Adds the y=x reference line
12-
labs(title = "Comparison of AR values and Predicted values",
13-
x = "AR values (Real)",
12+
labs(
13+
x = "Actual Values",
1414
y = "Predicted values") +
1515
theme_minimal() +
1616
theme(plot.title = element_text(hjust = 0.5))
1717

1818
# Save the plot as a PNG file
19-
ggsave("ar_vs_predicted_comparison_plot.png")
19+
ggsave("ar_uncomp.png")
2020

336 KB
Binary file not shown.

example/predict/reg/reg_comp_norm_success_3/normalized_predictions.csv

Lines changed: 298729 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
# Load necessary libraries
3+
library(ggplot2)
4+
5+
# Load the data
6+
data <- read.csv("predict_data_AR.csv")
7+
8+
# Create the plot
9+
ggplot(data, aes(x = AR, y = predicted)) +
10+
geom_point(color = 'blue', alpha = 0.6) + # Adds points with some transparency
11+
geom_abline(intercept = 0, slope = 1, color = 'red', linetype = "dashed") + # Adds the y=x reference line
12+
labs(
13+
x = "Actual Values",
14+
y = "Predicted values") +
15+
theme_minimal() +
16+
theme(plot.title = element_text(hjust = 0.5))
17+
18+
# Save the plot as a PNG file
19+
ggsave("reg_comp.png")
20+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2024-08-22 19:34:22,528 - root - INFO - The following arguments are received or filled with default values:
2+
Namespace(method='predict', configFile='/home/shanavas/PycharmProjects/deepFPlearn/example/success_jsonfile/regtransc_predict.json')
3+
2024-08-22 19:34:22,910 - tensorflow - WARNING - No training configuration found in save file, so the model was *not* compiled. Compile it manually.
4+
2024-08-22 19:34:22,911 - root - INFO - Adding compressed fingerprints
5+
2024-08-22 19:34:22,917 - root - INFO - Using input matrix of shape (5988, 2048) with type bool
6+
2024-08-22 19:34:22,917 - root - INFO - Compressed fingerprints are added to input dataframe.
7+
2024-08-22 19:34:24,293 - root - INFO - Compressed FP matrix with shape (5988, 256) and type float32
8+
2024-08-22 19:34:24,763 - root - INFO - Loading scaler from example/reg_transc/comp_normal/scaler.pkl
9+
2024-08-22 19:34:24,763 - root - INFO - Applying inverse transformation to get pre-normalized values
10+
2024-08-22 19:34:24,764 - root - INFO - Saving normalized predictions to /home/shanavas/PycharmProjects/deepFPlearn/example/predict/reg/reg_comp_norm_1/normalized_predictions.csv
11+
2024-08-22 19:34:29,010 - root - INFO - Prediction successful. Results written to '/home/shanavas/PycharmProjects/deepFPlearn/example/predict/reg/reg_comp_norm_1/predict_data_AR.csv'

0 commit comments

Comments
 (0)