AnnotationSpec.md 4.44 KB
Newer Older
Scarlett Li's avatar
Scarlett Li committed
1
# NNI Annotation 
Scarlett Li's avatar
Scarlett Li committed
2

Yan Ni's avatar
Yan Ni committed
3
## Overview
Scarlett Li's avatar
Scarlett Li committed
4

Yan Ni's avatar
Yan Ni committed
5
To improve user experience and reduce user effort, we design an annotation grammar. Using NNI annotation, users can adapt their code to NNI just by adding some standalone annotating strings, which does not affect the execution of the original code. 
chicm-ms's avatar
chicm-ms committed
6

Yan Ni's avatar
Yan Ni committed
7
Below is an example:
Scarlett Li's avatar
Scarlett Li committed
8

Yan Ni's avatar
Yan Ni committed
9
10
11
12
13
```python
'''@nni.variable(nni.choice(0.1, 0.01, 0.001), name=learning_rate)'''
learning_rate = 0.1
```
The meaning of this example is that NNI will choose one of several values (0.1, 0.01, 0.001) to assign to the learning_rate variable. Specifically, this first line is an NNI annotation, which is a single string. Following is an assignment statement. What nni does here is to replace the right value of this assignment statement according to the information provided by the annotation line.
Scarlett Li's avatar
Scarlett Li committed
14
15


Yan Ni's avatar
Yan Ni committed
16
In this way, users could either run the python code directly or launch NNI to tune hyper-parameter in this code, without changing any codes.
Scarlett Li's avatar
Scarlett Li committed
17

Yan Ni's avatar
Yan Ni committed
18
## Types of Annotation:
Scarlett Li's avatar
Scarlett Li committed
19

Yan Ni's avatar
Yan Ni committed
20
In NNI, there are mainly four types of annotation:
Scarlett Li's avatar
Scarlett Li committed
21
22


Yan Ni's avatar
Yan Ni committed
23
### 1. Annotate variables
Scarlett Li's avatar
Scarlett Li committed
24

Yan Ni's avatar
Yan Ni committed
25
   `'''@nni.variable(sampling_algo, name)'''`
Scarlett Li's avatar
Scarlett Li committed
26

Yan Ni's avatar
Yan Ni committed
27
`@nni.variable` is used in NNI to annotate a variable.
Scarlett Li's avatar
Scarlett Li committed
28

Yan Ni's avatar
Yan Ni committed
29
**Arguments**
Scarlett Li's avatar
Scarlett Li committed
30

Yan Ni's avatar
Yan Ni committed
31
32
- **sampling_algo**: Sampling algorithm that specifies a search space. User should replace it with a built-in NNI sampling function whose name consists of an `nni.` identification and a search space type specified in [SearchSpaceSpec](SearchSpaceSpec.md) such as `choice` or `uniform`. 
- **name**: The name of the variable that the selected value will be assigned to. Note that this argument should be the same as the left value of the following assignment statement.
Scarlett Li's avatar
Scarlett Li committed
33

34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
There are 10 types to express your search space as follows:

* `@nni.variable(nni.choice(option1,option2,...,optionN),name=variable)`
  Which means the variable value is one of the options, which should be a list The elements of options can themselves be stochastic expressions
* `@nni.variable(nni.randint(upper),name=variable)`
  Which means the variable value is a random integer in the range [0, upper).
* `@nni.variable(nni.uniform(low, high),name=variable)`
  Which means the variable value is a value uniformly between low and high.
* `@nni.variable(nni.quniform(low, high, q),name=variable)`
  Which means the variable value is a value like round(uniform(low, high) / q) * q
* `@nni.variable(nni.loguniform(low, high),name=variable)`
  Which means the variable value is a value drawn according to exp(uniform(low, high)) so that the logarithm of the return value is uniformly distributed.
* `@nni.variable(nni.qloguniform(low, high, q),name=variable)`
  Which means the variable value is a value like round(exp(uniform(low, high)) / q) * q
* `@nni.variable(nni.normal(mu, sigma),name=variable)`
  Which means the variable value is a real value that's normally-distributed with mean mu and standard deviation sigma.
* `@nni.variable(nni.qnormal(mu, sigma, q),name=variable)`
  Which means the variable value is a value like round(normal(mu, sigma) / q) * q
* `@nni.variable(nni.lognormal(mu, sigma),name=variable)`
  Which means the variable value is a value drawn according to exp(normal(mu, sigma))
* `@nni.variable(nni.qlognormal(mu, sigma, q),name=variable)`
  Which means the variable value is a value like round(exp(normal(mu, sigma)) / q) * q

Below is an example:
Scarlett Li's avatar
Scarlett Li committed
58

Yan Ni's avatar
Yan Ni committed
59
60
61
62
```python
'''@nni.variable(nni.choice(0.1, 0.01, 0.001), name=learning_rate)'''
learning_rate = 0.1
```
Scarlett Li's avatar
Scarlett Li committed
63

Yan Ni's avatar
Yan Ni committed
64
### 2. Annotate functions
Scarlett Li's avatar
Scarlett Li committed
65

Yan Ni's avatar
Yan Ni committed
66
   `'''@nni.function_choice(*functions, name)'''`
Scarlett Li's avatar
Scarlett Li committed
67

Yan Ni's avatar
Yan Ni committed
68
`@nni.function_choice` is used to choose one from several functions.
Scarlett Li's avatar
Scarlett Li committed
69

Yan Ni's avatar
Yan Ni committed
70
**Arguments**
Scarlett Li's avatar
Scarlett Li committed
71

72
- **functions**: Several functions that are waiting to be selected from. Note that it should be a complete function call with arguments. Such as `max_pool(hidden_layer, pool_size)`.
Yan Ni's avatar
Yan Ni committed
73
- **name**: The name of the function that will be replaced in the following assignment statement.
Scarlett Li's avatar
Scarlett Li committed
74

Yan Ni's avatar
Yan Ni committed
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
An example here is:

```python
"""@nni.function_choice(max_pool(hidden_layer, pool_size), avg_pool(hidden_layer, pool_size), name=max_pool)"""
h_pooling = max_pool(hidden_layer, pool_size)
```

### 3. Annotate intermediate result

   `'''@nni.report_intermediate_result(metrics)'''`

`@nni.report_intermediate_result` is used to report intermediate result, whose usage is the same as `nni.report_intermediate_result` in [Trials.md](Trials.md)

### 4. Annotate final result

   `'''@nni.report_final_result(metrics)'''`

`@nni.report_final_result` is used to report the final result of the current trial, whose usage is the same as `nni.report_final_result` in [Trials.md](Trials.md)