asataura commited on
Commit
e508771
1 Parent(s): fed0bad

Updating numpy version

Browse files
Files changed (3) hide show
  1. .idea/misc.xml +3 -0
  2. requirements.txt +1 -1
  3. run_experiments.sh +0 -30
.idea/misc.xml CHANGED
@@ -1,4 +1,7 @@
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <project version="4">
3
  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.6 (jam_shield_LLM_)" project-jdk-type="Python SDK" />
 
 
 
4
  </project>
 
1
  <?xml version="1.0" encoding="UTF-8"?>
2
  <project version="4">
3
  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.6 (jam_shield_LLM_)" project-jdk-type="Python SDK" />
4
+ <component name="PyCharmProfessionalAdvertiser">
5
+ <option name="shown" value="true" />
6
+ </component>
7
  </project>
requirements.txt CHANGED
@@ -1,4 +1,4 @@
1
- numpy==1.15.2
2
  torch==1.12.0
3
  matplotlib==3.0.0
4
  gym==0.10.9
 
1
+ numpy>=1.21.0
2
  torch==1.12.0
3
  matplotlib==3.0.0
4
  gym==0.10.9
run_experiments.sh DELETED
@@ -1,30 +0,0 @@
1
- #!/bin/bash
2
- # Results bash script
3
- # author: abubakar sani ali
4
-
5
-
6
- # Experiment 1: wideband, 5GHz, csc = 0
7
- python3 results/Anti_Jam.py 0 5 0
8
-
9
- # Experiment 2: wideband, 5GHz, csc = 0.2
10
- python3 results/Anti_Jam.py 0 5 0.2
11
-
12
- # Experiment 3: wideband, 2.4GHz, csc = 0
13
- python3 results/Anti_Jam.py 0 2.4 0
14
-
15
- # Experiment 4: wideband, 2.4GHz, csc = 0.2
16
- python3 results/Anti_Jam.py 0 2.4 0.2
17
-
18
- # Experiment 5: broadband, 5GHz, csc = 0
19
- python3 results/Anti_Jam.py 1 5 0
20
-
21
- # Experiment 6: broadband, 5GHz, csc = 0.2
22
- python3 results/Anti_Jam.py 1 5 0.2
23
-
24
- # Experiment 7: broadband, 2.4GHz, csc = 0
25
- python3 results/Anti_Jam.py 1 2.4 0
26
-
27
- # Experiment 8: broadband, 2.4GHz, csc = 0.2
28
- python3 results/Anti_Jam.py 1 2.4 0.2
29
-
30
- echo All Done!