Skip to content

Commit 7c45e14

Browse files
authored
Fix logo in README for PyPI (#5)
1 parent 561bc21 commit 7c45e14

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

MarkdownLogo.svg HowsoLogo.svg

File renamed without changes.

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
include README.md
22
global-include requirements-*.txt
33
global-include requirements.in
4+
global-include HowsoLogo.svg
45
include LICENSE.txt
56
include LICENSE-3RD-PARTY.txt
67
include version.json

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
<div align="left">
3-
<img src="MarkdownLogo.svg">
3+
<img src="HowsoLogo.svg">
44
</div>
55

66
The Howso Engine&trade; is a natively and fully explainable ML engine, serving as an alternative to black box AI neural networks. It’s core features give users data exploration and machine learning capabilities through the creation and use of Trainees that help users store, explore, and analyze the relationships in their data. Howso&trade; leverages an instance-based learning approach with strong ties to the [k-nearest neighbors algorithm](https://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm) and [information theory](https://en.wikipedia.org/wiki/Information_theory) to scale for real world applications.
@@ -23,7 +23,7 @@ Furthermore, Trainees are auditable, debuggable, and editable.
2323
- [Howso Playground](https://playground.howso.com)
2424

2525
## General Overview
26-
This Repo provides the Python interface with [Howso Engine](https://github.com/howsoai/howso-engine) that exposes the Howso Engine functionality. The Client objects directly interface with the engine API endpoints while the Trainee objects provides the python functionality for general users. Client functions may be called by the user but for most workflows the Trainee functionality is sufficient. Each Trainee represents an individual Machine Learning object or model that can perform functions like training and predicting, while a client may manage the API interface for multiple Trainees.
26+
This Repo provides the Python interface with [Howso Engine](https://github.com/howsoai/howso-engine) that exposes the Howso Engine functionality. The Client objects directly interface with the engine API endpoints while the Trainee objects provides the python functionality for general users. Client functions may be called by the user but for most workflows the Trainee functionality is sufficient. Each Trainee represents an individual Machine Learning object or model that can perform functions like training and predicting, while a client may manage the API interface for multiple Trainees.
2727

2828

2929
## Supported Platforms
@@ -65,7 +65,7 @@ Below is a very high-level set of steps recommended for using the Howso Engine:
6565
4. Call Analyze on the Trainee to find optimal hyperparameters
6666
5. Explore your data!
6767

68-
Once the Trainee has been given feature attributes, trained, and analyzed, then the Trainee is ready
68+
Once the Trainee has been given feature attributes, trained, and analyzed, then the Trainee is ready
6969
to be used for all supported machine learning tasks. At this point one could start making predictions
7070
on unseen data, investigate the most noisy features, find the most anomalous training cases, and much more.
7171

0 commit comments

Comments
 (0)