forked from ubern-mia/MIALab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwarning-message.html
More file actions
37 lines (35 loc) · 1.24 KB
/
warning-message.html
File metadata and controls
37 lines (35 loc) · 1.24 KB
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
<!DOCTYPE html>
<html>
<head>
<style>
.warning-box {
border: 2px solid red;
background-color: #ffcccc;
padding: 10px;
margin: 20px 0;
border-radius: 5px;
font-family: Arial, sans-serif;
}
.warning-header {
color: red;
font-weight: bold;
font-size: 18px;
margin-bottom: 5px;
}
.warning-text {
font-size: 14px;
}
</style>
</head>
<body>
<div class="warning-box">
<div class="warning-header">Warning</div>
<div class="warning-text">
This program is presently in a developmental phase. Upcoming updates might introduce new functionalities, and significant modifications could occur across the existing and forthcoming versions, leading up to the stable version.
</div>
<div class="warning-text">
We were using Linux build based ARM64 processors and to avoid using third party build and any confilct we used tensorflow<2.10 and numpy<1.24 to avoid any conflict. We are working on the new version of the project which will be compatible with all the latest version of the libraries.
</div>
</div>
</body>
</html>