Skip to content

Commit 05688c7

Browse files
committedJan 6, 2021
Update README.md
1 parent 75b950f commit 05688c7

File tree

1 file changed

+19
-12
lines changed

1 file changed

+19
-12
lines changed
 

‎README.md

+19-12
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,45 @@
1-
# Anomaly detection
1+
# AIOps 2020
22

3-
> This is the group project for ANM2020.
3+
This is our group project for Advanced Network Management 2020 final project.
4+
5+
## Repository Guide
6+
7+
> This repository is for the final project of *The Anomalies*
8+
9+
### Directory
10+
11+
- `Docs/` Documentation for this project. Includes the project specification as well as our presentation and final report.
12+
- `Legacy` All of our previous prototypes and pre-trained models.
13+
- `Processing` The notebooks we created for processing data of different KPI resources.
14+
- `Scripts` The main and test scripts.
415

516
### Running Scripts in Tencent Cloud
17+
618
- Make sure python script has the following at the beginning
719
```shell
820
#!/usr/bin/env python3
921
```
1022
- Give it permission
1123
```shell
12-
chmod +x consumer.py
24+
chmod +x Consumer.py
1325
```
1426
- Run it using:
1527
```shell
16-
nohup python -u ./consumer.py > [output file name].log &
28+
nohup python -u ./Consumer.py > [output file name].log &
1729
```
1830

1931
- View the output log:
2032

2133
```shell
2234
cat [output file name].log
23-
```
35+
```
2436

2537
- Kill the process:
2638

2739
```shell
28-
ps ax | grep consumer.py
40+
ps ax | grep Consumer.py
2941
kill PID
30-
```
31-
32-
### Scripts
33-
34-
- consumer.py --- script to submit our answers
35-
- concat.py --- script to make a single file for all data
42+
```
3643

3744
## Problem statement
3845

0 commit comments

Comments
 (0)
Please sign in to comment.