Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Commit 4fbb0b3

Browse files
author
Cipher
committed
Update
1 parent 938579b commit 4fbb0b3

File tree

11 files changed

+13
-10
lines changed

11 files changed

+13
-10
lines changed

Janex.egg-info/PKG-INFO

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Metadata-Version: 2.1
22
Name: Janex
3-
Version: 0.0.5
3+
Version: 0.0.6a0
44
Home-page: https://github.com/Cipher58
5-
Download-URL: https://github.com/Cipher58/Janex/archive/refs/tags/v0.0.2-beta.tar.gz
5+
Download-URL: https://github.com/Cipher58/Janex/
66
Author: Cipher58
77
Author-email: cipher58public@gmail.com
88
License: Lily 1.0
@@ -26,15 +26,13 @@ Released under the **new** Free Lily License 1.0, Janex will improve and become
2626

2727
<h5> Adding to your project </h5>
2828

29-
Firstly, clone the git repository to the local directory of your project.
29+
Firstly, you'll need to install the library using the Python pip package manager.
3030

3131
```
32-
cd /path/to/your/project/directory
32+
python3 -m pip install Janex
3333

34-
gh repo clone Cipher58/Janex
3534
```
36-
37-
Secondly, import the Janex toolkit into your code by adding this line
35+
Secondly, you need to import the library into your Python script.
3836

3937
```
4038
from Janex import *
@@ -97,7 +95,7 @@ print(output)
9795

9896
<h3> Functionality </h3>
9997

100-
<h4>Version 0.0.2-Gamma</h4>
98+
<h4>Version 0.0.5</h4>
10199

102100
- Word tokenizer ✓
103101
- Intent classifier ✓

Janex.egg-info/SOURCES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Setup.py
44
setup.py
55
Janex/__init__.py
66
Janex/chat.py
7+
Janex/main.py
78
Janex.egg-info/PKG-INFO
89
Janex.egg-info/SOURCES.txt
910
Janex.egg-info/dependency_links.txt

Janex/.DS_Store

0 Bytes
Binary file not shown.

Janex/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ def pattern_compare(self, input_string):
6868
print(f"Similarity: {similarity_percentage:.2%}")
6969

7070
if most_similar_pattern:
71-
return most_similar_pattern
71+
highest_similarity = highest_similarity / 100
72+
return most_similar_pattern, highest_similarity
7273
else:
7374
raise ValueError("No matching intent class found.")
7475

Janex/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

build/lib/Janex/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ def pattern_compare(self, input_string):
6868
print(f"Similarity: {similarity_percentage:.2%}")
6969

7070
if most_similar_pattern:
71-
return most_similar_pattern
71+
highest_similarity = highest_similarity / 100
72+
return most_similar_pattern, highest_similarity
7273
else:
7374
raise ValueError("No matching intent class found.")
7475

build/lib/Janex/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

dist/.DS_Store

6 KB
Binary file not shown.

dist/Janex-0.0.5b2-py3-none-any.whl

7.09 KB
Binary file not shown.

dist/Janex-0.0.6a0-py3-none-any.whl

7.09 KB
Binary file not shown.

dist/Janex-0.0.6a0.tar.gz

5.47 KB
Binary file not shown.

0 commit comments

Comments
 (0)