-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchitecture.html
More file actions
54 lines (51 loc) · 2.24 KB
/
architecture.html
File metadata and controls
54 lines (51 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Architecture • Automatic Contract Summarizer</title>
<link href="assets/site.css" rel="stylesheet"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<nav>
<a class="item" href="index.html">Home</a>
<a class="item" href="architecture.html">Architecture</a>
<a class="item" href="contrib.html">Contrib</a>
<a class="item" href="guide.html">Guide</a>
<a class="item" href="https://developmentgateway.org/" target="_blank">DG</a>
<a class="item" href="https://github.com/devgateway/automatic-contract-summarizer/" target="_blank">Github</a>
<a class="item" href="install.html">Install</a>
<a class="item" href="license.html">LICENSE</a>
<a class="item" href="privacy.html">Privacy</a>
</nav>
</div>
</header>
<main>
<section>
<div class="container">
<h1>Architecture</h1>
<h2>Technologies</h2>
<p class="lead">The architecture stack is composed of the following open source libraries and tools:</p>
<ol>
<li><strong>Python</strong> - The main programming language used to develop the AI tool.</li>
<li><strong>Huggingface</strong> - All LLM source files can be automatically downloaded from the site.
</li>
<li><strong>Torch/Transformers</strong> - These are the main libraries used to train the AI models.</li>
<li><strong>CUDA</strong> - Used to greatly improve speed with NVIDIA cards.</li>
</ol>
</div>
</section>
</main>
<footer>
<div class="container small">
<img src="assets/dg_logo.jpg" alt="Development Gateway" class="footer-logo">
<img src="assets/HC2.png" alt="Hackcorruption" class="footer-logo">
</div>
</footer>
<script src="assets/main.js"></script>
</body>
</html>