-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAIlib.html
More file actions
80 lines (71 loc) · 3.71 KB
/
AIlib.html
File metadata and controls
80 lines (71 loc) · 3.71 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
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
<!DOCTYPE html>
<html>
<head>
<title>SHEP AI</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="assets/test1.ico" type="favicon/ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
</head>
<body class="backgroundC">
<div class="topnav">
<p class="title" align="center">Dexter Shepherd</p>
<a align="left" class="topnavlogo"><img src="assets/eyeT.png" width="50px" height="50px"></a>
<a class="topnavleft" href="index.html">Home</a>
<a class="topnavleft" href="index.html#about">About</a>
<a class="topnavleft" href="downloads.html">Downloads</a>
<a class="topnavleft" href="contact.html">Contact</a>
<br>
<!-- <a align="right" href="https://www.facebook.com/SHEP-AI-101118428133298/" class="fa fa-facebook"></a>
<a align="right" href="https://twitter.com/ai_shep" class="fa fa-twitter"></a>
<a align="right" href="https://www.instagram.com/shep.ai/" class="fa fa-instagram"></a>
<a align="right" href="https://www.youtube.com/channel/UCQr_MHaJ53feVK19lDKDxCQ?view_as=subscriber" class="fa fa-youtube"></a> -->
<a align="right" href="https://www.linkedin.com/in/dexter-shepherd-1a4a991b8/" class="fa fa-linkedin"></a>
<a align="right" href="https://scholar.google.com/citations?hl=en&user=hJSy6CYAAAAJ" class="ai ai-google-scholar ai-2x"></a>
<a align="right" href="https://github.com/shepai" class="fa fa-github"></a>
<a class="topnavright" class="search-container"><input id="searchbar" type="text" placeholder="Search.." name="search"></a>
<a href="#" class="topnavright"><i onclick="search()" class="icon fa fa-search"></i></a>
<script src="search.js">
</script>
</div>
<!-- the main content -->
<div class="main">
<br>
<div align="center" class="iconPage">
<img class="imageCircle" src="assets/SHEPpython2.png">
</div>
<h2 id="about" class="headerText">Python SHEP library of V0.0.9</h2>
<hr class="break">
<h3 class="contentText">
This version of SHEP takes on the concepts of the chatbot, but makes it self learning. The natural language processing and graph
data storing is used, along with databases and other structures. What is new is that there are no set answers when learned. The program
simply gathers logs of conversations and finds the most relevent to the current conversation it is having and see how responses have been done in the past.
<br><br>
The bot is constantly learning new ways to respond by asking you information. The trick is is to respond to the bot, as it is learning from the way
you respond to information.
<br><br></h3>
<font color="blue"><a href="downloads.html">Download the library</a></font> to get started! The file "AI.py" will need to be in the same folder as your code.
<br /><br />For the SHEP library to run, you will need to use any Python 3.
<br /><br />
<div align="center"><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"></div>
<!-- Auto width -->
<form method="get" action="downloads/V0.0.9.zip">
<button href="" class="btn1"><i class="fa fa-download"></i> Download</button>
</form>
<br/><br/>
<h5><b>Using SHEP</b></h5>
You can include the SHEP library using the following line:
<br />
<div class="codeBox"><font color="orange">from</font> AI <font color="orange">import</font> CB</div>
<br/>
<div class="codeBox"><font color="orange">from</font> AI <font color="orange">import</font> *
<br/> <font color="red"></font>
</div>
<br/><br/><br/>
</div>
</div>
</body>
<script>
</script>
</html>