diff --git a/.idea/misc.xml b/.idea/misc.xml
index 791742aac19004e98ffc7e23b7f561586967d922..1b5f6f736536803396a9f042bfdc1981e5153ac8 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -3,5 +3,5 @@
   <component name="Black">
     <option name="sdkName" value="Python 3.9 (LC-MS-RT-prediction)" />
   </component>
-  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (LC-MS-RT-prediction)" project-jdk-type="Python SDK" />
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (LC-MS-RT-prediction)" project-jdk-type="Python SDK" />
 </project>
\ No newline at end of file
diff --git a/test.py b/test.py
deleted file mode 100644
index 5f788fb210656ca045d61ff49067ffb23e062636..0000000000000000000000000000000000000000
--- a/test.py
+++ /dev/null
@@ -1,13 +0,0 @@
-from loss import masked_cos_sim
-import torch
-
-acc =[]
-for i in range(1000):
-    true = torch.rand(1024,174)
-    target = torch.rand(1024,174)
-    acc.append(masked_cos_sim(true, target))
-
-
-
-acc = torch.tensor(acc)
-m = acc.mean()
\ No newline at end of file