Skip to content

Commit 6cb997e

Browse files
committed
Docs
1 parent f4f0d8f commit 6cb997e

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

Arch_Rationale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Contents
2+
# Contents (Old Stuff - Outdated)
33
- [Traveling Salesman Problem](#Traveling-Salesman-Problem)
44
- [Knapsack Problem](#Knapsack-Problem)
55
- [Multiple Knapsack Problem](#Multiple-Knapsack-Problem)

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Transformer Pointer-Critic
22

3+
This is a repo with the source code for the [Attention-Based Model and Deep Reinforcement Learning for Distribution of Event Processing Tasks](https://arxiv.org/abs/2112.03835). If this code is useful for your work, please cite our paper:
4+
5+
```
6+
@inproceedings{Mazayev2021AttentionBasedMA,
7+
title={Attention-Based Model and Deep Reinforcement Learning for Distribution of Event Processing Tasks},
8+
author={Andriy Mazayev and Faroq Al-Tam and No{\'e}lia S. C. Correia},
9+
year={2021}
10+
}
11+
```
12+
313
## Contents
414

515
- [Problem Statement](#problem-statement)
@@ -26,7 +36,7 @@ pip install -r requirements.txt
2636

2737
For more info check Tensorflow's [installation guide](https://www.tensorflow.org/install/pip).
2838

29-
## Architecture Details
39+
## Architecture
3040

3141
**Simple Overview**
3242
![simple_arch](./media/paper_arch.png)
@@ -50,12 +60,12 @@ Three QoS are considered:
5060
```python
5161
array([
5262
[ 0.00, 0.00, 0.00], -> Node EOS. Rejected `Rules` will be "placed" here
53-
[ 0.70, 0.80, 0.40], -> Node 1. Remaining CPU: 0.70 | Remaining RAM: 0.80 | Remaining Storage: 0.40
54-
[ 0.50, 0.40, 0.20], -> Node 2. Remaining CPU: 0.50 | Remaining RAM: 0.40 | Remaining Storage: 0.20
63+
[ 0.70, 0.80, 0.40], -> Node 1. Available CPU: 0.70 | Available RAM: 0.80 | Available Storage: 0.40
64+
[ 0.50, 0.40, 0.20], -> Node 2. Available CPU: 0.50 | Available RAM: 0.40 | Available Storage: 0.20
5565
[ 0.10, 0.12, 0.17] -> Rule 1. Required CPU: 0.10 | Required RAM: 0.12 | Required Storage: 0.17
5666
[ 0.18, 0.32, 0.16] -> Rule 2. Required CPU: 0.18 | Required RAM: 0.32 | Required Storage: 0.16
5767
],
58-
dtype=float32, shape=(5, 5))
68+
dtype=float32, shape=(5, 3))
5969
```
6070

6171
### Repo structure

0 commit comments

Comments
 (0)