Giter Site home page Giter Site logo

lrwilt / highcliffai-community-edition Goto Github PK

View Code? Open in Web Editor NEW

This project forked from appliedaistudio/highcliffai-community-edition

0.0 0.0 0.0 1.37 MB

Open-source version of HighcliffAI

License: Apache License 2.0

Python 5.12% Batchfile 0.01% Jupyter Notebook 94.87%

highcliffai-community-edition's Introduction

Contributors Forks Stargazers Issues MIT License LinkedIn


appliedAIstudio


Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. Roadmap
  5. Contributing
  6. License
  7. Contact

About The Project

Product Name Screen Shot

Describe the purpose of the project, but do so by answering two questions. What components will be up and running when the code is run properly? What will the code do when it's up and running? The reader wants to know what will (or should) get launched, and what will (or should) it do.

Give the reader a diagram and walk them through it. The diagram should be a UML development view like the one shown above. UML is simple to understand and most readers have already had experience with them. The above diagram is much more complicated that what you will typically have. Typically, the diagram will be some subset of the system depicted. So it may only show user-interface components or a single data pipeline.

The diagram should be a specific implementation of the general systems architecture for appliedAIstudio solutions. Diagrams for your project should derived from the more general diagrams in the general solution architectre.

Let the diagram do most of the work. The diagram should be clear enough for the reader to understand most of the intended solution. Use this text to give the reader a brief tour of the diagram and to disclose any details that are not easy to express in the UML diagram. The tour should follow the information flow of the system. Where does information start? Where does it go next? Where does it end? Bullet points or lists are a good way to describe what the system is intended to do. For example:

  • The system takes in resume data
  • It also takes in job postings
  • It matches resumes to job posts and records the match score

You should also describe how each file corresponds to each element shown in the diagram. As you describe each element in the diagram, name the file in the repository that contains the code for that element. For example, you could say something like;

The ML model is implemented in ml.py

Be sure to do this for every element shown in the diagram.

(back to top)

Naming Conventions

This project uses the following naming conventions for repos, directories, files, commits, versions, and programming lanuages.

Repos

Repos will use kebab case with all lower case letters and no other special characters. Numbers are allowed. Related repos can be found filtering on the product/project name.

[product/project name]-[purpose]-[subpurpose] e.g. solution-devops-templaterepo

Repos names will be:

  • Descriptive
  • Readable
  • Consistent
  • Contextual
  • Future-friendly
  • Extensible
  • Reusable
  • Brief (short/ succinct)

Repo name guidelines adapted from the British Columbia Policy Framework for GitHub Document Naming Repos.

Directories

Directories use the same conventions as repos with the exception that leading periods (.) and underscores (_) can be used. Directories do not have to have multple name sections separated by dashes.

Files

File names follow the same name guidelines as repos and directories and have no spaces.

Commits

Commits use Conventional Commits.

ex:

docs(readme): update readme with examples
feat(api)!: add pagination to results
fix(frontend): fix tab order on form fields

Versions

Release versions use Semantic Versioning, with the version number prefixed with "v'".

Given a version number MAJOR.MINOR.PATCH, increment the:

  1. MAJOR version when you make incompatible API changes,
  2. MINOR version when you add functionality in a backwards compatible manner, and
  3. PATCH version when you make backwards compatible bug fixes.

Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.

ex:

v1.0.11
v1.5.0
v2.1.3

Programming Languages

Code will use the most widely excepted sytle guide for a particular programming language with development begins. e.g. PEP8 for Python.

(back to top)

Built With

The purpose is to let the reader know what kind of background information they will need to understand this solution. Imagine someone technically competent, but new to this project. What technologies would be helpful to read up on? What background reading did you wish you had when you started this project? In the introductory paragraph, describe the general purpose for each technology listed. Answer the question: what would happen if that technology was missing? List each technology below with a link to background information for the reader. Here are a few examples.

(back to top)

Getting Started

The worst part of a GitHub project is staring at folders and code and wondering: what now? Give the reader a basic overview of how to turn the code in this repository into a working system. The Quick Start section will give step-by-step instructions. Here you should describe the basic ideas. You want to give the reader a mental model of how to set things up so that when they read through the detailed instructions, they can put each step into a meaningful context. This section should describe the basic ideas behind the quick start process in enough detail so that someone reading through the steps in the Quick Start section could tell if there was a step missing or out of order.

If this project, for example, were instructions on building a house. You would describe the general idea of putting in the foundation, then framing out the building, putting in the infrastructure, then finishing off the walls. These aren't detailed steps, but a general description for understanding detailed steps later.

Prerequisites

Assume the reader is starting with commodity compute and storage technology. Walk the reader through the prerequisites of preparing the standard environment for running this system. For each step, start be describing why that step is necessary (what will happen if they decide to skip this step). Give a bullet point with a very short description of the step. Follow that with a code block that describes the system interactions needed to achieve that step. For example:

The user interface is a Node JavaScript application. You will need to install Node to run the dashboard user interface.

  • npm
    npm install npm@latest -g

Quick Start

These are the minimum steps needed to get a copy of the system up and running. Below is an example of how you can instruct your audience on installing and setting up your app. Spend a considerable amount of time making these instructions as short as possible.

  1. Get a free API Key at https://example.com
  2. Clone the repo
    git clone https://github.com/your_username_/Project-Name.git
  3. Install NPM packages
    npm install
  4. Enter your API in config.js
    const API_KEY = 'ENTER YOUR API';

(back to top)

Usage

Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.

For more examples, please refer to the Documentation

(back to top)

Roadmap

This section is extremely important. Do not delete this, skip this, or leave it blank. Create content similar to the example below. Update this section regularly.

  • Add Changelog
  • Add back to top links
  • Add Additional Templates w/ Examples
  • Add "components" document to easily copy & paste sections of the readme
  • Multi-language Support
    • Chinese
    • Spanish

See the open issues for a full list of proposed features (and known issues).

(back to top)

Contributing

Keep this section only if the project is open source...

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the Apache 2.0 License. See LICENSE.md for more information.

(back to top)

Contact

Team Member, Role - [email protected]
Team Member, Role - [email protected]
Team Member, Role - [email protected]
Team Member, Role - [email protected]
Team Member, Role - [email protected]

Project Link: https://github.com/your_org/repo_name

(back to top)

highcliffai-community-edition's People

Contributors

jerryaoverton avatar lrwilt avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.