-
Notifications
You must be signed in to change notification settings - Fork 105
/
firebase.json
87 lines (87 loc) · 2.46 KB
/
firebase.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [
{
"source": "/",
"destination": "https://tensorflow.org/js/",
"type": "301"
},
{
"source": "/setup",
"destination": "https://tensorflow.org/js/tutorials/setup",
"type": "301"
},
{
"source": "/tutorials",
"destination": "https://tensorflow.org/js/tutorials",
"type": "301"
},
{
"source": "/faq",
"destination": "https://tensorflow.org/js/tutorials",
"type": "301"
},
{
"source": "/demos",
"destination": "https://tensorflow.org/js/demos",
"type": "301"
},
{
"source": "/tutorials/core-concepts.html",
"destination": "https://tensorflow.org/js/guide/tensors_operations",
"type": "301"
},
{
"source": "/tutorials/tfjs-layers-for-keras-users.html",
"destination": "https://tensorflow.org/js/guide/layers_for_keras_users",
"type": "301"
},
{
"source": "/tutorials/how-to-get-started.html",
"destination": "https://tensorflow.org/js/tutorials/learning/ml",
"type": "301"
},
{
"source": "/tutorials/fit-curve.html",
"destination": "https://tensorflow.org/js/tutorials/linear_regression",
"type": "301"
},
{
"source": "/tutorials/webcam-transfer-learning.html",
"destination": "https://tensorflow.org/js/tutorials/transfer/image_classification",
"type": "301"
},
{
"source": "/tutorials/mnist.html",
"destination": "https://tensorflow.org/js/tutorials/handwritten_digit_cnn",
"type": "301"
},
{
"source": "/tutorials/model-save-load.html",
"destination": "https://tensorflow.org/js/tutorials/save_load",
"type": "301"
},
{
"source": "/tutorials/import-keras.html",
"destination": "https://tensorflow.org/js/tutorials/conversion/import_keras",
"type": "301"
},
{
"source": "/tutorials/import-saved-model.html",
"destination": "https://tensorflow.org/js/tutorials/conversion/import_saved_model",
"type": "301"
},
{
"source": "/tutorials/custom-webgl-op.html",
"destination": "https://tensorflow.org/js/tutorials",
"type": "301"
}
]
}
}