diff --git a/Fatigue_Life/Visuize/read_node.py b/Fatigue_Life/Visuize/read_node.py new file mode 100644 index 0000000000000000000000000000000000000000..bb48dc09f3a19bf6c971b9bb2a429a75ae7f99d3 --- /dev/null +++ b/Fatigue_Life/Visuize/read_node.py @@ -0,0 +1,204 @@ +import csv +import os + +def read_dat_file(dat_file_path): + nodes = {} # node_id -> (x,y,z) + elements = [] # list of node_id lists for each element + + in_nodes = False + in_elements = False + + with open(dat_file_path, "r") as file: + lines = file.readlines() + + for line in lines: + line = line.strip() + + # Detect node block + if line.lower().startswith("nblock"): + in_nodes = True + in_elements = False + continue + if line == "-1": + if in_nodes: + in_nodes = False + elif in_elements: + in_elements = False + continue + + # Detect element block + if line.lower().startswith("eblock"): + in_elements = True + in_nodes = False + continue + + # Parse nodes + if in_nodes: + parts = line.split() + if len(parts) >= 4: + try: + node_id = int(parts[0]) + x = float(parts[1]) + y = float(parts[2]) + z = float(parts[3]) + nodes[node_id] = (x, y, z) + except Exception: + pass # ignore malformed lines + + # Parse elements (assuming EBLOCK contains element lines) + if in_elements: + parts = line.split() + if len(parts) >= 15: + # Extract the 4 node IDs from the standard positions + # Usually nodes start around index 10 or 11 — adjust if needed + try: + # For tetrahedral elements, pick 4 node IDs. + # You need to confirm the exact positions for your .dat file. + node_ids = [int(parts[11]), int(parts[12]), int(parts[13]), int(parts[15])] + elements.append(node_ids) + except Exception: + pass # ignore malformed lines + + # Sort node IDs and create a mapping from node_id to zero-based index + sorted_node_ids = sorted(nodes.keys()) + id_to_index = {nid: i for i, nid in enumerate(sorted_node_ids)} + + # Build positions array ordered by zero-based index + positions = [nodes[nid] for nid in sorted_node_ids] + + # Convert element connectivity node IDs to zero-based indices + connectivity = [] + for elem_node_ids in elements: + try: + zero_based = [id_to_index[nid] for nid in elem_node_ids] + connectivity.append(zero_based) + except KeyError: + # Skip elements with invalid node IDs + continue + + return positions, connectivity + +""" +def read_dat_file(dat_file_path): + in_nodes = False + in_elements = False + nodes = [] + cells_detail = [] + + with open(dat_file_path, "r") as file: + lines = file.readlines() + + lines_iter = iter(lines) + + for line in lines_iter: + + line = line.strip() + + # Detect node block + if line.lower().startswith("nblock"): + in_nodes = True + continue + + if in_nodes and line.strip() == "-1": + in_nodes = False + continue + + # Detect element block (EBLOCK) + if line.lower().startswith("eblock"): + in_elements = True + continue + + if in_elements and line.strip() == "-1": + in_elements = False + continue + + # Parse nodes + if in_nodes: + parts = line.split() + if len(parts) == 4: + #node_id = int(parts[0]) + x = float(parts[1]) + y = float(parts[2]) + z = float(parts[3]) + nodes.append(( x, y, z)) + + # Parse elements (EBLOCK, 2-line format) + if in_elements: + parts = line.split() + num_nodes =8 + if len(parts) > 14: + # Ensure the line has 4 parts: ID, X, Y, Z + num_nodes = int(parts[8]) + less = 0 + if num_nodes < 8: + less = 8-num_nodes + node_idsz = [] + # print(parts) + element_id = [int(parts[10])] # Element ID + body_id = [int(parts[0])] + for i in range(11, 19-less): + # print(i) + node_idsz.append(int(parts[i])) # Node IDs + if num_nodes<=8: + cells_detail.append(element_id+body_id+node_idsz) + if len(parts) == num_nodes-8 and num_nodes>8: # Ensure the line has 4 parts: ID, X, Y, Z + for i in range(0,num_nodes-8 ): + node_idsz.append(int(parts[i])) + #next_line = next(lines_iter).strip() # this is only required if the next line contains more node ids in case of hexhedral elements + #node_ids += [int(x) for x in next_line.split()] + + # print(element_id, node_idsz) + cells_detail.append(element_id+body_id+node_idsz) + + + + # Sort nodes and cells + nodes.sort(key=lambda x: x[0]) + cells_detail.sort(key=lambda x: x[0]) + + # Remove duplicates + cells_detail = [list(item) for item in dict.fromkeys(tuple(cell) for cell in cells_detail)] + + # Extract 4-node face from each cell (can adjust as needed) + cells = [[cell[2], cell[3], cell[4], cell[6]] for cell in cells_detail] + + return nodes, cells +""" +def read_result_file(result_file_path, encoding='utf-8'): + parameters = [] + with open(result_file_path, mode='r', encoding=encoding) as file: + if result_file_path.endswith(".csv"): + reader = csv.reader(file) + next(reader) # Skip header + for row in reader: + parameters.append(float(row[-1])) + elif result_file_path.endswith(".txt"): + for line in file: + if "Node Number" in line: + continue + columns = line.split() + try: + parameters.append(float(columns[-1])) + except ValueError: + continue + return parameters + +def main(folder_path): + folder_base_name = os.path.basename(folder_path).replace("_data", "") + dat_file_path = os.path.join(folder_path, f"{folder_base_name}.dat") + fatigue_life_path = os.path.join(folder_path, f"{folder_base_name}.txt") + + dat_file_path = "path/to/your/dat_file.dat" + fatigue_life_path = "path/to/your/fatigue_life.txt" + + nodes = read_dat_file(dat_file_path) + life = read_result_file(fatigue_life_path) + + # Do something with the data + print("Nodes:") + for node in nodes: + print(node) + + print("\nLife:") + for param in life: + print(param) diff --git a/Fatigue_Life/Visuize/visualize.py b/Fatigue_Life/Visuize/visualize.py new file mode 100644 index 0000000000000000000000000000000000000000..ed3d3b40a6e7e07efecc5255dec9c1824ba5a344 --- /dev/null +++ b/Fatigue_Life/Visuize/visualize.py @@ -0,0 +1,65 @@ +from read_node import read_dat_file, read_result_file +import os + +import numpy as np +import pyvista as pv +folder_path = r"D:\AnK\FatigueNet\Fatigue_Life\datasets\Raw data\shaft_high\life_D15_d5_r1" +folder_base_name = os.path.basename(folder_path).replace("_data", "") +dat_file_path = os.path.join(folder_path, f"{folder_base_name}.dat") +fatigue_life_path = os.path.join(folder_path, f"{folder_base_name}.txt") + +#dat_file_path = "path/to/your/dat_file.dat" +#fatigue_life_path = "path/to/your/fatigue_life.txt" + +positions,cells = read_dat_file(dat_file_path) +fatigue_life = read_result_file(fatigue_life_path) +#print(positions) +#print(fatigue_life) + +# Step 3: Log scale for better contrast +log_fatigue_life = np.log10(fatigue_life) + +# Step 4: Create point cloud +point_cloud = pv.PolyData(positions) +point_cloud["Fatigue Life (log10)"] = log_fatigue_life + +# Step 5: Alternative approach - create glyphs from points +# This is often more reliable for point-based visualizations +sphere_source = pv.Sphere(radius=0.15) +glyphs = point_cloud.glyph(geom=sphere_source, scale=False) + +# Step 6: Plotting +plotter = pv.Plotter() + +# Add spheres with color mapping +plotter.add_mesh( + glyphs, + scalars="Fatigue Life (log10)", + cmap="viridis", + opacity=1.0, + show_edges=False +) + +# Add scalar bar with better formatting +plotter.add_scalar_bar( + title="log₁₀(Fatigue Life)", + n_labels=6, + fmt="%.1f" +) + +# Set background color for better contrast +plotter.set_background('white') + +# Set camera position for better view +plotter.camera_position = 'iso' + +# Add axes for reference +plotter.add_axes() + +# Show the plot +plotter.show() + +# Print some debug info +print(f"Created {len(positions)} spheres") +print(f"Fatigue life range: {fatigue_life.min():.0e} to {fatigue_life.max():.0e}") +print(f"Log fatigue life range: {log_fatigue_life.min():.2f} to {log_fatigue_life.max():.2f}") \ No newline at end of file diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_103_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_103_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..44f92531651db5df83a8dfd4a831c448e822f5cf --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_103_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad64312af4facb669cdae185d60445e94dde6bf40fee5964f5ba23f73d0e744 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_104_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_104_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..d3c327354a9e0302e45687b2e5da5362291cc1fa --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_104_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5c6c1e30f222de5119275c024c972b9361106bdd7d89033cab610c23ca0c83 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_108_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_108_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..7ce147d9d5308bccc295a1b79f170ee3eaef6ced --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_108_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52695fd7c677ff909522b128d65bdaa590164d34294b4ddf08f75f0e51a849e9 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_114_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_114_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..81886e47bc6ef1c8cb99de15ef5ecc15f717b11d --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_114_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65cb5327b04706b60640f29868aef8e8353846289f91349e8eae59f6c17f6a95 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_116_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_116_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a1b4783bae5de05234200013503910a6152e9560 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_116_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11bf8213ec4973276055757bd79a308af0e634d0d6c571944e90fe22d7f755f +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_121_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_121_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..48e5b3ff3e3b3bf1b4e0745bb526e4771d6aedda --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_121_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73eba26aa8856f0c2ae85de1092818ebaa02007daf6f7dbf8cd49e932fc3f639 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_122_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_122_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..97ad85c0b81ad9e36677325d26a7095508ef2b9b --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_122_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2938dcae7b6a586652b6ace86196070d40dc6f4cdedc2eec555b806c43b14f2e +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_125_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_125_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..50f4a70492db1d569170f77e0373c83db6513209 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_125_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa6f4ae28f05376aa55c8804f30ce52e177d1eb8f678fcce1016d0180fb4670 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_134_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_134_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..3bd556ecb61487a060d6dbc6bf1bc32de3ccbb3f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_134_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d778d8772faf623530fb94234df34354305d76816cd4617c3135cdc7d807fe +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_135_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_135_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..7447cd7a9c6ca3267bcc380a2bf7aa059d72f431 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_135_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c375ee9562570288db741e374a08a1735528af7bcea0612de6cff90ccaeb491 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_13_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_13_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9f2e7cc8273f1a67836f88cdebb7a0dd8c7942cb --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_13_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e70bf663e383c8366ac55cb6348e03fe6b86fe9e2c6d4be0279120984f5c143 +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_148_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_148_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..0170c40e359b3284a1b675863fcbf2c6311161f4 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_148_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1569329e9c2aa81d47d9cbbe33e9ce8fe795fa574aab11fb62735cc2976a35 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_150_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_150_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d6b611b95d7c666866980861d97cc1e7958b61cb --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_150_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78948394b88df8f5d9bcdcc67c6f18e44ade948f050557f9f09e463abb6cd970 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_153_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_153_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..c9b22edcd4859cbc67075f25497511d894abceef --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_153_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0bffbb5d54ed617d474ba41e7d321da2dedd5770dd3d9845d4296ef6ee6a6e +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_153_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_153_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..fb6d4e962539bf383d916c72f7b35f53b770a805 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_153_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c939e4f0ec300e1196217edaafc215554de098f453797f075f87f6ca34fb512f +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_155_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_155_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..e0a8137e51e15262c86f32a60d4e2a72eb42eb63 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_155_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e22758f9b6c984ef70739a1b6fff99990f985e8b7285397b400febe99dcd525 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_155_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_155_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..33e3d7cb14f56038113a39725150fba3c11b5c78 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_155_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:391f419bba2e06c17cbe14f4cb4317a8ef5ca2cd02da3e48b48379e1ca431616 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_159_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_159_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..6ca77cd96694b08612452466627c038123ae9c79 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_159_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a1be743292f563541623bbd8880a6cc7ac891955b1ff8f7a9d2612bc676a99 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_15_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_15_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..86c36729182e11e28eaf53a7f6365ba8a25bd51f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_15_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9049797916266b872308051b62f0eb438ef6b787e793fb355476311dad8aae0e +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_161_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_161_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..92c017cee03bce367982973e221e458f79dcb4fa --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_161_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78ccd64f7cc4a7ffc4b1a1b4c26a60c02732cac5b6f3e4cc3377b3dea0d76d7 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_162_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_162_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..5b07d323fd2ae07ebbf41f824682a08a32380018 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_162_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111e87dafdcfbd2fc2b08067f11d2c16ffc1a11371a546526d5144027155dd18 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_166_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_166_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..07e14fa1051489a791775c3ae27f853f6bb0d024 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_166_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e429174b0d3755d12967555d766849aa8435ab48f7ef737038f2e26a7859f59f +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_169_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_169_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..0e8255bb8e9a424038fb6e40dec684ec369325e7 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_169_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd831e61c779f444b917016c3919da4c7ac02a3839c1e513ac3ec8dd021a28ff +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_176_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_176_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..ebb7b2255b254c86d9ba2871a35a3c0181e2ac21 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_176_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d58bb04ada26c684837310b32ddb9d35a38be8050f6ec8f1b80db0085c2d8f7 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_178_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_178_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..1d59c467b4bfa67cd88f42ad68820922b415795c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_178_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5cb3b665902a8cd2c8752ddc4d2b39c06944376e218f0a7e7a5720644051b34 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_182_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_182_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..52783edf01d8250b859b960c6e421bdb21c81cc5 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_182_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda7de2ea4fec49e7e988f31b34b394c5883513d21dc7e38e9dfc4a5e4d962de +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_183_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_183_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..446008ad41792304191a39d37b66d6eb450ca452 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_183_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:758e74f8488575dd4a72ac5d28a1189654fd5c35fb3ce88ddafdac0e69881d23 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_187_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_187_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6023828e223ffea064b026eb0ad292ad969bb75d --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_187_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e823a1255cf9c9fe5371dabc5c3eafad5ca9d82ce3b31f3d3f8ec3ef4410d23 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_187_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_187_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..dab8dde3ab6447db6eea892241b5e7e491f38bef --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_187_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e183b820a4d7cbe0a6e94e1311845a5e1f2aa34eb16e5a4cf0b53bc52b2cb4 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_188_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_188_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..2bcd3ec191511c70601c20158751014c19902cbe --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_188_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f125b14ecb48c0e9d73187b1ed52a17c81ae3d1f6c3997f1c7c41b8da53013 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_193_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_193_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6288593ab0a8572319184ea12cff206767850bfe --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_193_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa3a8fcec2dcede0f5fc872e492665e59f163deb665701d800dbb814c136732 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_19_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_19_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..afc8862a0bc6b4833978d100bc62ab8189362f54 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_19_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7a294a23cd1f94ea980ce5a99a99b13493c8415bd93113753e5a02505f9413 +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_1_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_1_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..dd1d8ec27ada49a8d9a6136191786ca8b1886cb8 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_1_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c68a0cc537f81f0c1eec4825a58818e7b8fc3ee31df4b1aab98ea8076a0a116 +size 3371 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_205_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_205_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..1808401a0b15d6dfbe5e66106981dfeb8eed9bb0 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_205_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a6dd4e68baa5a03c0f340aa598b2b7b0e0fee6757360a24b60ec0e5fd4f764 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_206_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_206_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..86d8fc4791014858e5cacb96367d9e701bf88983 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_206_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70772749440412c7157a5b611ae2b24b97feb94ebfd774c02fae18018e9a73a +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_208_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_208_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..c5b415977ac938e045e53b1c974ae7fc78413fd8 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_208_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601ee3decebfbc25b15d6dbb14f4ee139da4e139065b155f25489b92a8eb6ecd +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_210_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_210_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..df014f258f8600d90e768c23c3b465473245c703 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_210_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4e6ddcb17b4c2979cd8acfdc04b636029c646b4f0c33b245daf4cdfe830ad0 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_219_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_219_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6dd6875345fc7909d9f332bcb9888afdab15987e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_219_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf253e1f9d92ddb1c0bd9c083d972d58cfed8607d2588abc3e847e1a4ba181b +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_222_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_222_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9c320f7e76197c49ab2623c1ce70679950af655e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_222_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5485abb489b06be7907f0b2b5054028eff9746a552ca8e4a8a90c8ed09cc0ea +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_223_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_223_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..266dbb506c3628e4d9300f13973d676025db319f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_223_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ff282c4900ba6e379a975ef1075f482ef57505647c4116b3d4fe46f9dc5ae4 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_229_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_229_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..2c66b8e728a2b4a9c3cbf740d1a4e2673b644b63 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_229_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5a36d8659f683a3865d93cca2eef4c6922024fb8acd60c38e07f8c0768fd7c +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_22_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_22_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..9d317733c4ae77e9baef21f92e0d6fba6f0fe536 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_22_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c8f7ae98456dd31d9d397508c8cdab9fd2ce04e96b5d9a22eeb7f0735c697b +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_231_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_231_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..d3bdcb8009339ee0f2fa4b7a9045c35bacca84ad --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_231_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6798cc09ed79f7ee73a006846ed4dfd1275ee5085fc236560ab7a77a9ca70c +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_231_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_231_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..4cc6eba246a9dda5573b1ba782903420a10a0f2b --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_231_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8048cc2c2df7695c01457465119c80d4d2f058a6ae8810c5653f307b20d3c0f0 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_233_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_233_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..ffc83bc447610cba010e8419cb4b312522577ab0 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_233_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76f53463a145eb452d64507ebed516ea6c93f4b98b27623d7385a8952ede2a31 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_23_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_23_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..407f2e7ec36007d85e6f0d189f013ef23186dd17 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_23_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2f20a38929e4ec5824e45fd8927ea441f0540730d8b38641956bb3fe690dfc +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_23_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_23_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..32de0f1abcf9b5ade3b22c7969a7af0e1688e1f3 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_23_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d8f87a22a0f02ffda80fd88eaea86f1fa3247f0caf75e0c7b749517dba1e4fc +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_245_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_245_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..75fdeb5701f3aa19fabbc4117601ff53f78fe490 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_245_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e275c6f326a5e0ac1e11a4fd691a52a616df9e755b7604ca97ce76e639e915 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_255_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_255_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..c3e473797c38dec3cc9df09e550f31109e7e7ed9 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_255_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af0237caa8464fc13fcd7b5b2e155c1151c4af1c8fcd78cf3a674069c7e755b +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_258_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_258_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..af73d4030342b8318017367d41c4d147c6391564 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_258_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d520f51fd6e4bdd8227e411208c7073dd3fcfe383fbcf28f6f7445f60c213919 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_263_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_263_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..6d354e94a7cc9a03f3e7169e50a7d9a16e0c573e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_263_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6690c472c40233a6e5e0a7a2d8208eda3dfb4f54ef95f70d778ca40b20b19e8d +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_266_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_266_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..80dead6b47b83488acc9ea27c3f33ecc3cdcdbd3 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_266_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ff69a2fcf9513cb30db5adf5a570cfdcde0e8b22f7ba7b91dbfd4e8260ec17 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_270_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_270_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..db37f7f13fa503248aaf93eaf6b1bc9d9db2c88b --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_270_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f23729842223d85f26537271111662c821907eb9ecc1044d3da1779b1c7b38 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_276_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_276_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..763ace40dc2e3ed62f9f6f522a16ac446a65383d --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_276_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d23bfc4b4d9589090db740a84c0c6492189499543fe2b8e2156dcb1dbbfcbfc +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_286_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_286_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..72b41d13d61af3ef12c5303f36a5f435875b4167 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_286_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d65d510beb1bf3fff3c8607f31b032efdccc7ae426cea9d847b880e84d1b267 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_291_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_291_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..187e24557ed731fcc0617260bb33b71ca833cb34 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_291_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ec0fdba42f76951813e8093a021a2c182f7e34d7145a69bf8fd9c75771a039 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_292_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_292_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..00a196bdbdb1514edb6ec9b5832c5f052a86e0d5 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_292_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ce736201eb35281da3ec537b11b5aa698e54a7d4e4d6766579f0b778577e78 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_296_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_296_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..ba81050bf47f3b1c40167c426c0e3968f6c3ba1f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_296_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d7995a1cf7e0a4d5d36ab037dfefc7eb456775ce58d6a2062c86e838d9a05d +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_2_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_2_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..b79fa1914c313c63631e8efd9b81091740e8433a --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_2_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:831652bd76dd57cf9863d72ea6129a266945d547705e3e7ff6af996675246e9d +size 9135413 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_2_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_2_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..b3efa2f7aee2af60d3588985672c9789921bc53d --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_2_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e84190b7af00199215e942e6bddf5ec0ef8a8a61580a750ba5895b2ebf1954 +size 3371 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_304_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_304_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..b84a3f05e8d31967b78b7add563f2135e0cc39da --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_304_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd75590bf684f11b431d365a2ddfadc84e74654ea2db3714f80c2105f0f316f9 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_314_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_314_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..a31e3926f1b87d8265d62164d96e984dcb72f0b5 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_314_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b733f24809d99206c1999f89647aaf8f53de5fe57e2e6190080ab4f588e3ffa2 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_323_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_323_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..da3c97788d8c5879c1f9ddc8dbfc38e320b3a618 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_323_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cc7d49b63a99e459c5c39e0bbd9995e99c504dae6996379344c0bef277bf7ec +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_325_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_325_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..48845b6d7be745e9fa95b1eccf48392c60b793fc --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_325_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3cc41ebb6c6879a66c54312a84da7521e5e47423d38a6c3cb41d6b69d249041 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_340_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_340_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..0bcca38210009523db9a8625c9b6b9b52ec0f18f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_340_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce27b559d347197cbab13133a9d25c3b2adeeb405823d242ab6e1dfbdcfd48a +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_344_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_344_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..934aa0fd8b85cef932b35d4cfa096baaf28fa162 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_344_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dbd4aea0409ce4b11d6137effba143f38cd95dd54a759ae465969783892cd7d +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_34_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_34_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..93b593ee4224a8cac715a18b39a6752a4d2850c6 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_34_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b65a816b19b5cea194bcd644cfd87b287c59ccfa90406a1e4727b61c55e8a70 +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_34_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_34_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..38687105805f69500b133ad32699f0c7f970811b --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_34_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b31b2eaabc8978965c6e2be15c88a59ebde402f8622014788dfd2a3f162eaa +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_354_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_354_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..d30a42d77f97e662392850a696b6d351c5e2339e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_354_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8b424c51a5641ebf4b96ed668b85cd05fef05fc11787a0f844a99a6e7476493 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_361_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_361_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..7bac0ea73a6fa49484aeb5fb0c49772ca6fd0877 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_361_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62af53436b5a1f02fad67e808ec8d34aea9a506a9205ae5cd50694f10d0a4a0c +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_369_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_369_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..b81d41ac696f4af12bf36bf10caf42353b7e8b2f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_369_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4bb9ec6228a10845881c0f580e237d92c3d17575f3bb5242a93c6617b1d27a3 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_36_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_36_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6d7632201729701e6dfb73e9f00b43d9e93b8229 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_36_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05692014e616ce09fefc8a8b1b40c4a18893c250877b4c6fa5d6c67b1f502a9 +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_373_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_373_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..3d92e562885616e27dd2f367731891e76ef98a72 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_373_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f4203a34e896c60abd85736372c3188dac61eca46a33d77af01bfb1cb6cdd46 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_373_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_373_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..6bebce463c21a1602509df877790b76dd4bd1ef8 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_373_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aee6606ddfd20add44f6505619ec49006a154652eaa6a0e27c9118c6047810e +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_375_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_375_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..30fd1c8293057fd8d733956ba705963cb0858f64 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_375_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5cba121b1206b50328714be179d9dda030bf0ddb67fbcbbd2aca2ea818641e +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_383_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_383_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..4ee7f482a783024149f5ae67fa77bf0f5b8cbc34 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_383_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32c7bb3c0d6112d9a51b46f7770ad9a50e04bdb4a312608e0820aac34bff8ea8 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_384_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_384_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..1f01a778db9665fcb4a1d8537e3fcb0cc9353a17 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_384_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8162be825be9144c2cd6c2885c1f0ea132278cd70ee6a34a13d6d782a14b92f3 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_387_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_387_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..af02e0df913f91a34ecbce3f91c811b59ea04e79 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_387_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa676813c55353a2680501923f43cfe3358c59798cc2801c21ff4a84bc2a448 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_391_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_391_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..de304046e3defc85da88fbaafb483f7d8e743ce3 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_391_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83e6c4b48c337926b14ded7116fb2855666b89ab1f566601496a50b9eb9df19 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_399_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_399_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..9ad2233c9a38718654546e6e63e0ddc2199add43 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_399_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:479dc44fae36b9018405bc8062c6aad759215767f7d8552cef8f38bda725d5af +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_3_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_3_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..15fad51e3815baeb6128fefb7b315141e0bed496 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_3_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c242df7cd874c361480ea764b66272356040fed6e36b116505bef3792cf1f1 +size 3371 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_404_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_404_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..4767223271270a6274549c8ea3d07a5704381590 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_404_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57332c1275c22876ef824bf517531b2b7321444b3af9a4dfd2df8bd45fc5ad88 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_408_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_408_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..0f8ef20641e8e6fb03f6de66b735150effa6b032 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_408_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90fe49cdfccace9f1b3fd01754778e654cd7c326bac194ea533906dfc5ae9d2 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_40_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_40_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..069efb30193f5deab2cbeac69e97356107bff3d8 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_40_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2172de9909db09ba9a474d404b11b26f4e3cef9d77947e643dfc6df0600e9f4e +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_410_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_410_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..3bd32e5b4e985b01e3995b7782a341685563043e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_410_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a681344bb61cf0ac51905547f60f3b88908fb15180c0416b40e92afc19acc71 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_410_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_410_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..8c8fffd4a90874c5310d78e1ff60fb05c37e1613 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_410_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225464ab10387283e5a83457b7211fd16958471659d65b1d82394c2ce5f0d660 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_418_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_418_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..c1de431034809de128987adadb67e0cdfbb78ba8 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_418_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d3fe8a90f8ce97d824293f7eda3508e5f1c3992c29a816a0ab6dcf6a5ae86a7 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_426_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_426_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..cc14fcc31ffc4cfbd0543a8aef65680b98319fc8 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_426_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3461ab86ae66331bf4ebf26e5434992cbf595da2e11fb39318d62bc6f6eead2 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_427_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_427_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..80c672c69dec4d9d6ce7e72717a43cf0ac030caf --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_427_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e576c121d0cf95b5f50c427dbf2a5ab6d519619a45f7653c37d721fcca5cdada +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_429_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_429_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..cbca4b5f9d55214e288c29b8e4bb4132293cde37 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_429_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d7cb01e97cc9a078db92143c952d1da59bb51c9fd370296d42a13e11f7128e +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_430_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_430_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a9aa9dc9691b608063d9f0b21b66d36258eae2c0 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_430_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d667a6adde86a4923a150dab7dccec7e3a01c9953af8385dc6615be36b21e4c +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_433_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_433_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..3db43514f53d8ed4614d61bad05b477523eae74e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_433_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:231e849b64fb2c6a715f77578c00ed34917917bc9925c6d59af7321f344dbd8a +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_434_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_434_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..8b85b6721e4f7756bd859a87d5c10e3082a847f5 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_434_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc27e29ca84e7fe8a9372222d6652376f453cf9e98fe18739e1e9fa7cd2f548 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_443_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_443_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..da5094eb9fbe020c57c5d9dad6c4ea60768d9852 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_443_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1753d4edd4780eff7ce2471e4a3bb5eb0c537a12322e4f43a5918d7a40f24f +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_443_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_443_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..7451ab67a100ac1f58a2007b68b35c6a5b60b8c7 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_443_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef03363ff5fa603a04195451033bbb03ec3688302cb2e9986d4ecafbcc311ef3 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_454_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_454_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..d64275f4ce782500cf10e8cdedce8a15b36928a4 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_454_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b419ec1a042e2fa1fd7ace91dfdac8e3c2631b7b45f5278f2cb62c2fc531580 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_458_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_458_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..ee29465c495b01883e9d21c2439937d46a46d3e9 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_458_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8631e320752df58b1fa70508995b8294b0ba0c9bb6301749ef94c6be7c2e861e +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_45_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_45_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..96c8d6107ff5fb71b9d59e26c6ad3ac3c9d52cc0 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_45_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80428d231ebda36bec07ce23b95550bc77651d5e12a7159cd24e8594809ef154 +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_467_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_467_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..536cef41ec4220d7d0e7068a8c1e478fd725060c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_467_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1777620b5f225c482bd3ed4da71bab65fa8e5649d9d8dc995cec222c1658891d +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_467_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_467_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..6b37d3d55e35070b6debb559128b7635e580eb83 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_467_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa4b192a4f257a3e7c4f23a73444598edad9adce7631c511e72a8de8ee38dc1 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_473_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_473_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..493e02214ff3393b0b7e325a9d0c11b23a78059c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_473_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fce092f116625ab70d913dfd6bddb98fd148061bb6073c8f8d8e6e7f471ff3 +size 9135495 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_474_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_474_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..ae870f308b06b973874aec94c6eaea595c1eead4 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_474_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbcf0fd4e5a7db91941e1f1e0f4bd7671d2848660684f4f09640cd32bdd2f5b +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_491_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_491_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..0c3b4f6a19957071896b784a74fc046498085f3c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_491_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9ed251feb3a59d5862ddc96b049909d0b884b4896a97f4a95e90c30d0cdb01 +size 3389 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_4_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_4_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..0f136dca89eea94a4393276305b1cf2a2767620e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_4_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac59dc176795263773d7f8926d84868024df394ed92090433f175180433285c +size 3371 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_52_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_52_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..185c2457bbab997e755659330399726886512ac7 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_52_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b40aa9d29d43d3e2e4230cba1892d9e2757c7ca4db594d1f193b4aebf9067b +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_57_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_57_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..1ddb13235670c8567e2c5d33c72112f6dddf654c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_57_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c08d747842ec4d3af065ee0e251694532cce9c72ffe26bb5ead1588d6836827 +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_60_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_60_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..6db52571616ca2e442566656b222c0cfa7ff5326 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_60_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f5ad325e2ae933796a79ffde3d6eca4bd39510237599f655a94dd2c6645c21 +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_63_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_63_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..03ee9a160126cb17caad8b9e0504c330e390f1d9 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_63_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b2d4cbddbe648e0756fecc5e9df1636de5966c23a0c528d414deb291aad0f0 +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_65_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_65_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..98f575a16d59933b108570a23a30f5c07d98f871 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_65_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dff39672f001699d450093e5caf3dba02ca71cecf1016246f7a9cc18eb29c58 +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_65_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_65_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..8d3bba73157725dba13adc2399c90ca5de6f0c77 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_65_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b96a1f72054905481bb0716a2b410d88365c668cfa567b3bfd3f0adc5fb31697 +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_70_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_70_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..811aadf6cac7310dbc5914f7f0b09b3754f3d304 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_70_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0ebb702ca7ec702652ced3094a0087f02f14e62751d30d4935a8668328c7e0 +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_75_output_life_normalizer.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_75_output_life_normalizer.pth new file mode 100644 index 0000000000000000000000000000000000000000..2a5dcc119b4626517105f2d64ed07fe210c47a49 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_75_output_life_normalizer.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2658f79294838a6d38864821eb6eb489160c93e6545ee9932f4e3552405b28f0 +size 3380 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_78_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_78_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..a4c814069a408c0de7bee300362fbf1dd0491811 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_78_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71761a2e0502fede033f74d2070e8b8e5ea544568cdc51ca965b96a373c4c78e +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_7_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_7_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..e2c136da3f9ee1405c0f52e82d7b960d6176c2ce --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_7_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47a02f30533636ca54b432c1f79d5d44323ab450c084b9f158d0f52edc443ee +size 9135413 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_84_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_84_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..ce6cfd867d24392f8a27e01b85b93609c277146e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_84_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f6b00a3613d48274ec09433c46d33efe88ec62f9173993a54e782416cae32b4 +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_86_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_86_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..736aaa48dd9ac32b96a18ebf5d6834d5edb4aa1f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_86_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1acd7be88c6fd00188b0a319f84e41e6019e64f7cb30c0e8fc3a3104e02bc885 +size 9135454 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_8_learned_model.pth b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_8_learned_model.pth new file mode 100644 index 0000000000000000000000000000000000000000..85bc14dcb20bdddcbe7cbea68610d8116ec8a9ed --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/checkpoint/best_model_checkpoint_8_learned_model.pth @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:839ac54bb498a2c49131c06cab28283085dfd9b564afe60ba643047f233c268c +size 9135413 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/epoch_run_times.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/epoch_run_times.pkl new file mode 100644 index 0000000000000000000000000000000000000000..70cac0beb8b13cd540c7612da98e6a46b2266d75 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/epoch_run_times.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b08a3b068d6a245d5f9c00cdc7edfc85bec5f5878b58955d4e07786dbc9f91 +size 4516 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_1.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_1.pkl new file mode 100644 index 0000000000000000000000000000000000000000..1b8d398fd3f6dbe8873d49333e8a6938d9161107 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_1.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a93546a564e18d1b42d23d09ad79820e1f9ad2b37c6e9e5474a558969e2bd4a7 +size 3284 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_100.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_100.pkl new file mode 100644 index 0000000000000000000000000000000000000000..1e141fdf0cfea8390d8409dd5e0c04fb387706bb --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_100.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657a29a724a42b9cf7ee444a230e24ba7f0b873021453eb014b81236d1e0c31d +size 3330 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_120.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_120.pkl new file mode 100644 index 0000000000000000000000000000000000000000..ae39ec684fdc42e5eb4bec912a1789e47e644e1a --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_120.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2367d1f11d3d7d125b230d621f8dec9c773ddce76a31a62ad8fead561bf29e1c +size 3339 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_140.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_140.pkl new file mode 100644 index 0000000000000000000000000000000000000000..ae886d5e7ad23b6f4bc16c6ac08f2eae511a733a --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_140.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5099d187ad04650a961130defa42a3223697f123cfb2544a463cd84f2c6d6ee5 +size 3348 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_160.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_160.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f2737edf305810b6e287fd0c2325a6a4e6b64de6 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_160.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82abd8c7b5ae1504c6fd2d839e1dd09743fccc454b07416d0218f4d89780a44a +size 3357 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_180.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_180.pkl new file mode 100644 index 0000000000000000000000000000000000000000..92f0816d8374940f5698c33510a92bdbc78c59ae --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_180.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510418b626c83bbef86985c0edc28ea0d04288394d6f124e9dad389cf3094e0a +size 3366 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_20.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_20.pkl new file mode 100644 index 0000000000000000000000000000000000000000..903a0c679a846f87cb24edd509db57cd55941d25 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_20.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa97b7198e0201ebd3cd64bc691c5ed9924e53db716de33a54899092dc991414 +size 3294 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_200.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_200.pkl new file mode 100644 index 0000000000000000000000000000000000000000..737a45fbbf5ae3ed41f033168d7c739d507d6abf --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_200.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22c0e4bf906262a6fef4a085959dcfac18d5bb07c888bf44bad301c9bce7ff4 +size 3375 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_220.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_220.pkl new file mode 100644 index 0000000000000000000000000000000000000000..55732b01c2a9af8b1edb344a05490bcc4237ca4d --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_220.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938d2d8997b0d82191c92a5eec1568bed1800228f002ee3158eff1d768d52d7d +size 3384 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_240.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_240.pkl new file mode 100644 index 0000000000000000000000000000000000000000..5930190e1b1ffb8323701e4003fde457b446c99c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_240.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3dd9577d0ed4b706f91ad8b43fbc567fbc84be949fe3ee62f2086b2ef0cab4f +size 3393 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_260.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_260.pkl new file mode 100644 index 0000000000000000000000000000000000000000..74b385a06b9f4ab2e4afb8709ddde3dc9f6db976 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_260.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c587870b8ee2d64849a14b9ca1f381dff8b7251cea555611254d1800e30cfda9 +size 3402 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_280.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_280.pkl new file mode 100644 index 0000000000000000000000000000000000000000..096cf9ce40f8333b69ff43850678f2e19a936c7a --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_280.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4466b25c854511f3612d18cad764e186c3d5605716979f722c70fd3f2f28d3a1 +size 3411 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_300.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_300.pkl new file mode 100644 index 0000000000000000000000000000000000000000..c3f12ae26b2b522e80655b6b70c962a1b2f04fcd --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_300.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f1c1326c0c153d3aba7799f93572ddf828e090ed52be8550eb207e04f29645 +size 3420 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_320.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_320.pkl new file mode 100644 index 0000000000000000000000000000000000000000..356982b4bd9dc63b140cd971dd7fe26060521a35 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_320.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446dfed2b4106d83f23bda0a5cb3e0fc720380cee2831ba85d56279d0c2f96ef +size 3429 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_340.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_340.pkl new file mode 100644 index 0000000000000000000000000000000000000000..dfa1f171684196d4c837e0bf809915c057e7fe9a --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_340.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6643810b8cef9aa4a674fc7564a65ad0cbac210df35f7e79bc32581a03ce6d6b +size 3438 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_360.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_360.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f51ee2059156f3ee9fa1a866bdd9f43eaf2a3470 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_360.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f42d2fb638a2ba25ebbbe3b4e33bdb21ff5eedb2dc70eec60569ee465ee4f2 +size 3447 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_380.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_380.pkl new file mode 100644 index 0000000000000000000000000000000000000000..13cc4dbad2a8bbbf1b76be02b871c6887f55827c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_380.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bbc2b8fbf10262cf9436e1e3f4328fd9a4d7948023a393f5862d491c9b236b1 +size 3456 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_40.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_40.pkl new file mode 100644 index 0000000000000000000000000000000000000000..09abdd4d6c3e7841933567834b12c03a47a69b5a --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_40.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2d799781d2e0971456ad5f04446600c620121c89852c07066b68549397a09d +size 3303 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_400.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_400.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e8e2b157dc64e98fc80636093049e711c3e8df13 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_400.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d44fcf77693c0d9a50bd8943d464f522f108a88638fc29b2f0e247c7ba99f55 +size 3465 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_420.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_420.pkl new file mode 100644 index 0000000000000000000000000000000000000000..137a42001fd6175b454735654f7f52b654bf0ac7 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_420.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc48338e38574a5bac76f3c6ad684aeaf3815506ec8a4b9733a373a601aef0d8 +size 3474 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_440.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_440.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b02b4ba6af8387e54f5ac88e2cafce6e3e18b65b --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_440.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1233ff6026b4d60aef7fdbf2a10a776c31ccec4ac5484a0bf26651567a4530be +size 3483 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_460.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_460.pkl new file mode 100644 index 0000000000000000000000000000000000000000..cbea6dd509324a91f81ff86a8973c1a8ea027c7b --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_460.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856c83643ab3eb29ed9d32ea3a7cd74d2bd94ae75c01ff84dab423fc5c8060bb +size 3492 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_480.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_480.pkl new file mode 100644 index 0000000000000000000000000000000000000000..faad061309ecc17423db732295e6c3cef8cf2d9c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_480.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d7af31760b6867a941f4b51156ed637ea3769b5ffd2377a55e8c713ca64f78 +size 3501 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_500.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_500.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b61ffed545ee06e0696d4d046629d1adca4eae79 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_500.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2e2f6ba3d90c394433dce41f0311e5ecc30646dafb1b095bff29bc85dea7b9 +size 3510 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_60.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_60.pkl new file mode 100644 index 0000000000000000000000000000000000000000..c5bd83ed396c0b0c3261573ff84ff6510c480514 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_60.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ef119909d7237d88996c10bbae7c2627cb5178cdab8bc321ae278c894bc0b4 +size 3312 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_80.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_80.pkl new file mode 100644 index 0000000000000000000000000000000000000000..01059b4801297008f64379bef6faaefcc5d8f4bd --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/eval_loss_epoch_80.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b21be39cd5f6a6341805561567597dfa3ee423115cb6b84bd8e0ac8ec2e61d +size 3321 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/final_train_loss.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/final_train_loss.pkl new file mode 100644 index 0000000000000000000000000000000000000000..d4a9cacf9402e368586fd65ce212190eb5cef7d6 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/final_train_loss.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7bf56ccf29728435f08cff4d6a2cfb29ecb3b3121854a776f691513bb60c1b +size 3870881 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_1.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_1.pkl new file mode 100644 index 0000000000000000000000000000000000000000..13625630c9177a876e4af51489b06961ee218db0 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_1.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee43040b0d30e70005fa9c76fe80345a836807390941273c282dcdd0406c4f8 +size 8072 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_100.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_100.pkl new file mode 100644 index 0000000000000000000000000000000000000000..470bfaf9ddf99d9f780625be47cdc6ea124721fa --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_100.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d063fb6b15ca27138977b2306ea62b4f57c21cef6ecef695eb201b50be888245 +size 774438 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_120.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_120.pkl new file mode 100644 index 0000000000000000000000000000000000000000..21711b85befc52f8604f0e70decc5121df21e1f4 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_120.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65d02cea24025aa4c97cd7135f9a0827d647798a9aafb62b938e7ea41f7aace +size 929267 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_140.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_140.pkl new file mode 100644 index 0000000000000000000000000000000000000000..aba27059404073080bcf249482dc2bafca883cdf --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_140.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4efb1014b821e9038d2ab30f1b337befcbdddc979f12cab16fb8391de5166ed5 +size 1084085 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_160.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_160.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b0dd6eef2d4c51cd542ad99281dac9355335f998 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_160.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c773075520941dc4a07add54e91773e92d442c02b5a6a23609961210e4db8385 +size 1238905 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_180.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_180.pkl new file mode 100644 index 0000000000000000000000000000000000000000..61a419a04e6ed09db8d3a1e8d21363e9d5861bf7 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_180.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d98e9daaf64cf5c533abec3899a02dd2297a5051dc647b52eec91596ab2f24 +size 1393732 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_20.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_20.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e02e232b5db5bbe97c7b4b9e3d9033b5c65e3ae3 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_20.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d2156bb3434c4a812fd012b01628a41ef86ea830cf21862f118dd8f0a10fbf +size 155153 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_200.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_200.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f6e542b5a1f76f66392bb2713027914ea0a1e179 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_200.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e6539408ac5bf75a1344b4cd82931449479d7ced60d2d76aa81d1a7f219e59c +size 1548552 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_220.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_220.pkl new file mode 100644 index 0000000000000000000000000000000000000000..eb36131a9282a0cced50047245239e3be5cc6c0d --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_220.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fdd1e3cf05d576ff30aeef3791b17e809f5cc3c00a8f48276daf7a3d08043e1 +size 1703370 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_240.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_240.pkl new file mode 100644 index 0000000000000000000000000000000000000000..c3002873d70c2dc26ecdb8a49f3cce48a330203e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_240.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ce956048f3daefcbdcecda9031d666e3219ac6b3cfec6ae7848bf28d956bb2 +size 1858199 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_260.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_260.pkl new file mode 100644 index 0000000000000000000000000000000000000000..0e9a12fc201bf23a0dd943770eb9815bd5b09c9a --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_260.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93e79033c17c6587cfb01178d26d0680bf48c7a559c835d6b9937b3f3420df7 +size 2013017 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_280.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_280.pkl new file mode 100644 index 0000000000000000000000000000000000000000..46e8dfa348c8700a940a2c6d615b55f0668dd12f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_280.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0956306be9fd8ad8c7aa50670dfc8432211a80640afab7921b8e508c5fb5166 +size 2167837 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_300.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_300.pkl new file mode 100644 index 0000000000000000000000000000000000000000..daa5fd4f5d5ade6f2567dc22ccb3a83948f56fab --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_300.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cde3bea9b81f1ffbfc6a8ffed35efa4d12887f3509f4055ae6511b693277bfb +size 2322664 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_320.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_320.pkl new file mode 100644 index 0000000000000000000000000000000000000000..65846312f3e49e0f25ec1a277d4c3094931d540f --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_320.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5247cb8d5efdaeeafba24d944117c2e55b64b085e3e512c413a0863a98655b37 +size 2477484 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_340.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_340.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b245bb541edc1c96aead0b26eb3c1427fbb45818 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_340.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f2137d8ee597a98a61d0fce21d68f975d1ada0ee69309e047f1690b5a27b03 +size 2632311 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_360.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_360.pkl new file mode 100644 index 0000000000000000000000000000000000000000..945c17e38542ed68f361f139e05677288dea9265 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_360.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3a7798e6a01d5897bea04fcdc5e7e9664e95bc0eb33c98af6f94f670098d06 +size 2787131 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_380.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_380.pkl new file mode 100644 index 0000000000000000000000000000000000000000..1aed5abaf038551037b9ad81651bd1c4871ccab4 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_380.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f31d854fe3f8feceb9f44428e0ab264969c6eb5057bc6d38e8156ed99fdf4d5 +size 2941949 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_40.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_40.pkl new file mode 100644 index 0000000000000000000000000000000000000000..9a603c313e119514bc5d7a7e72741e19d370ad4c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_40.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2aa75aedc2e3c22337e170f4927d11901493b9d5f9d0890cabd753cecfd969a +size 309973 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_400.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_400.pkl new file mode 100644 index 0000000000000000000000000000000000000000..421a23ca080847e8a53417b8be42468c00808082 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_400.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801ea4dc15da7c2ed125b8f86b08c15bca6b5b364b798d045e0f020e929cdffd +size 3096778 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_420.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_420.pkl new file mode 100644 index 0000000000000000000000000000000000000000..b7381cc6a77c09eff3053cd3782c2201bc1aa0f6 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_420.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b77d8b2356a44c046239048504e03fc3f5e0113aef2bc7b74f9ac8c6ca3fd86 +size 3251596 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_440.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_440.pkl new file mode 100644 index 0000000000000000000000000000000000000000..409dec9576266a9b7ace4b23c6430d1d91e82dc1 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_440.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3becb929afd888fe1080d06d71d910f81f4cd22a74cc20a75d6a9e1bbd1d5d3e +size 3406416 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_460.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_460.pkl new file mode 100644 index 0000000000000000000000000000000000000000..28fe08f291103e836cd942604c58857854dd4814 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_460.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927d4ef9625da712162a62d95efa51a5f091a417e20bbe91a5e0925919170365 +size 3561243 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_480.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_480.pkl new file mode 100644 index 0000000000000000000000000000000000000000..56542db1f75faca4f7b69454ac068d14f6a88b45 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_480.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6a74cedbc1ef7b6fd29757f5ab62bee14a0c70fffe5846197ad5fd75b51951 +size 3716063 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_500.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_500.pkl new file mode 100644 index 0000000000000000000000000000000000000000..d4a9cacf9402e368586fd65ce212190eb5cef7d6 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_500.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7bf56ccf29728435f08cff4d6a2cfb29ecb3b3121854a776f691513bb60c1b +size 3870881 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_60.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_60.pkl new file mode 100644 index 0000000000000000000000000000000000000000..cdba8dbd70618587a031205bb082e6f1cc5d2750 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_60.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78378957472a19d940dca30b03f2d9f24ebfc5cae22203c7e67b70e3a7c43818 +size 464800 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_80.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_80.pkl new file mode 100644 index 0000000000000000000000000000000000000000..9a75a64d8dc67240dd860d2c920032e8b0d88fe4 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/log/temp_train_loss_80.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6caab6f142893f152565939427fc6ca29d74110e54b3178c0d9996e9d061db8 +size 619620 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/plots_lr/training_loss_epoch_500.png b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/plots_lr/training_loss_epoch_500.png new file mode 100644 index 0000000000000000000000000000000000000000..5cbdb25c3c7e72bbb33e1e33fe38d867459eb937 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/plots_lr/training_loss_epoch_500.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec2f9628e395cf288e5c76eec9090d52ad02917e8fdf31dbf1292b3429fe497 +size 74998 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_1.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_1.pkl new file mode 100644 index 0000000000000000000000000000000000000000..78811a8a7cb3bb3433757738d3c9f54bf04e5910 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_1.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a92fe229bce5c9d47be3a11cffe4998e4a072592f6a2f676e911477c2909b2 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_100.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_100.pkl new file mode 100644 index 0000000000000000000000000000000000000000..5daa1710c6e39014fa9b5fc2fa4f47907e276f87 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_100.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63fd82c343a257f9a6cb55dcb730779d0929d5f60d28dd1a4739595fa7c7ec37 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_120.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_120.pkl new file mode 100644 index 0000000000000000000000000000000000000000..95ccd2051991b511cbdcf40ddeac9112f45d5117 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_120.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b6b442f8d7021f3e90f44ca3144e3d6eea07570456a380c38669fff77adc0e +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_140.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_140.pkl new file mode 100644 index 0000000000000000000000000000000000000000..4311541a3cff1bb54b4512ae90a7bc64def9f30c --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_140.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4bcafd9c560bf698f67d3d183eba6b7c6f684722772d47baef5599feeb708b +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_160.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_160.pkl new file mode 100644 index 0000000000000000000000000000000000000000..5015bf8724ea8b93a6ef33ab71084a5260f99f78 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_160.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d92c32c78140c2218b41e9f32464766d0cd33c551bf3190ee76cbfecdc40f51 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_180.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_180.pkl new file mode 100644 index 0000000000000000000000000000000000000000..fbcef30c54d446d57bc331a8882a82e548510199 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_180.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814fd93d4f8bab5168356a818cc6d8393da5b43f7908ce98e3318f2d83a480f5 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_20.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_20.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e401b17190bb92c1deefc6c2d2800e3e01f7c732 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_20.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ed9b85fa9e4a9d7ba26f0f1a2f29de628d1520f830ec0ca272c9450dbeb0c9d +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_200.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_200.pkl new file mode 100644 index 0000000000000000000000000000000000000000..c7e20eaf2398609e2f125d1fe767e556830a4caf --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_200.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af490b59c9e1633c8f2cc13bccfef1258e59944ccb1da91f8eac6ce6f5fe7a5 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_220.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_220.pkl new file mode 100644 index 0000000000000000000000000000000000000000..fd4e656b2e84eab2062b338b26209bc8c7e9e720 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_220.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff93a3655c14a11500263987ceb9b568c83fe6cc57d32b299674d6e5456eadd +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_240.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_240.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f0171f8345c4f4c5ddb720558892c4880e553bdf --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_240.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f11cb3509c022ac7f3f64ceda74b1e5c3d62c1bf51adbdaee3e74637186a6170 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_260.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_260.pkl new file mode 100644 index 0000000000000000000000000000000000000000..eb7067c5c948f56de890997b95c6d3eaafbb0c01 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_260.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7521638f8146eb30344db79eedb73bc3d10a0ca47dc14f961ad7dbfce09ed3 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_280.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_280.pkl new file mode 100644 index 0000000000000000000000000000000000000000..4cf8c144b46cbf4dd6e20ba74add75503d0b410e --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_280.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d601abfcc2bfc90235907b5ad104e48dcb739e55c4b5f120245631d99e44676b +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_300.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_300.pkl new file mode 100644 index 0000000000000000000000000000000000000000..aec312301b72a8bee16b0ed2a5c8b4c20ee339c4 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_300.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e1e2df5ca7704441c7d236e10ca5c9bd9c511304978380187a258a62711645 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_320.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_320.pkl new file mode 100644 index 0000000000000000000000000000000000000000..27ea86c2cfed586b61e1aef4ca694481bedaac69 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_320.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23af9c6743135a84aa670e5b30ffcec91fbacaac54912a9548d34c05c2c65c52 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_340.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_340.pkl new file mode 100644 index 0000000000000000000000000000000000000000..6a2c4d0b19d402f47eae4960f9e3e79447765a91 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_340.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7f2201925b9121e6e0da8347c0c50849236986fc8c884e9bc2567e4e8f7f265 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_360.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_360.pkl new file mode 100644 index 0000000000000000000000000000000000000000..4f2538edaf786278561408738efb54f74fb8a1bc --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_360.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79575ba078abde40c0aed023c8a805b919712ff9bd49001f2bde55968b750f9 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_380.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_380.pkl new file mode 100644 index 0000000000000000000000000000000000000000..212a0fe5de7cafcb6e909a8075f2e2a3167b3a55 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_380.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd0ad7acf4136aea650e163f03cd50d43ace661c9a78b49b42b0711e8e1703d0 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_40.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_40.pkl new file mode 100644 index 0000000000000000000000000000000000000000..25d8688e093cb35e2a096a45148045813377a56d --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_40.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84ac9d9993844fee38221fde2ea66f35e5020af336e906cd68dac736eca4681 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_400.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_400.pkl new file mode 100644 index 0000000000000000000000000000000000000000..513bafe19a437b15bac06cc57134269e57a34fef --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_400.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0e84870d446e77d524ab24d77ba0e9fcd19d6d61fbd0aeb578288e50e1aefe +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_420.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_420.pkl new file mode 100644 index 0000000000000000000000000000000000000000..8fd3413ebb41191b25277c9ddee2cf72761aecc6 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_420.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6fc6d13c87b9169d86616c49e350793584ad5a1af26e5984b951a83954bacc +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_440.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_440.pkl new file mode 100644 index 0000000000000000000000000000000000000000..95b1f02d8d1fd7bf0c6fe664110215ca9b1a0636 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_440.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a49de4c548a3e7dc85e5e0da20e8930a62214307ec442962cc722a69c908b688 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_460.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_460.pkl new file mode 100644 index 0000000000000000000000000000000000000000..93f150b50adef67b3943b7a46aeaed056e8a8b68 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_460.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15b90014065fb29718fa3eb4fb1ceb13caa9b9acabc7384bc419140949bef7ff +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_480.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_480.pkl new file mode 100644 index 0000000000000000000000000000000000000000..5f3dd61d8a31e2dd0031c03e3d1e539111ae4c95 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_480.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44e341f01e0d6257fdad14b8c3b9f4c3ee65a23f17b92d04c2a4be0754a139a0 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_500.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_500.pkl new file mode 100644 index 0000000000000000000000000000000000000000..1b6959c068c55caeabec222a14b2717ca6b0f229 --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_500.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86023347887c5aab9ac5cb60e7c0025960eaa7ef97d07156110d73b210c42124 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_60.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_60.pkl new file mode 100644 index 0000000000000000000000000000000000000000..163fd1bcb54014db45542d4ac23bc82fb34c398d --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_60.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b16d5bc4dabe436958b612e290436a8f3386ed814c0abf36518523147570f4 +size 449857 diff --git a/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_80.pkl b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_80.pkl new file mode 100644 index 0000000000000000000000000000000000000000..ccdd4bc8f51fdc6967594f90c898556c314f4c8b --- /dev/null +++ b/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra1_/EXPERIMENT_multi_feat_k60_500_shaft_low_extra/Fri-Sep--5-12-01-21-2025/rollout/rollout_epoch_80.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb3b1e17fec49186625f5dda6d3406021df1c5eb6567f16086b00fdd35f91c5e +size 449857