Skip to content
Snippets Groups Projects
Commit e31fa93e authored by Phil Höfer's avatar Phil Höfer
Browse files

Add Full Reuse Compliance

parent 2a764b76
No related branches found
No related tags found
1 merge request!1Resolve "Check Licensing Coverage"
# SPDX-FileCopyrightText: 2024 Phil Höfer <phil@suma-ev.de>
# SPDX-License-Identifier: AGPL-3.0-only
[package]
name = "suggestible"
version = "0.1.0"
......
# SPDX-FileCopyrightText: 2024 Phil Höfer <phil@suma-ev.de>
# SPDX-License-Identifier: AGPL-3.0-only
# Rust project name
PROJECT_NAME := Suggestible
......
<!--
SPDX-FileCopyrightText: 2024 Phil Höfer <phil@suma-ev.de>
SPDX-License-Identifier: AGPL-3.0-only
-->
# Suggestible
......
# SPDX-FileCopyrightText: 2024 Phil Höfer <phil@suma-ev.de>
# SPDX-License-Identifier: AGPL-3.0-only
[book]
authors = ["Phil Höfer"]
language = "en"
......
<!--
SPDX-FileCopyrightText: 2024 Phil Höfer <phil@suma-ev.de>
SPDX-License-Identifier: AGPL-3.0-only
-->
# Overview
- [Filtering](filtering.md)
<!--
SPDX-FileCopyrightText: 2024 Phil Höfer <phil@suma-ev.de>
SPDX-License-Identifier: AGPL-3.0-only
-->
# Filtering
This document outlines the steps and measures we take to hopefully prevent Suggestible from giving suggestions that expose unwanted qualities of the training data.
......
<!--
SPDX-FileCopyrightText: 2024 Phil Höfer <phil@suma-ev.de>
SPDX-License-Identifier: AGPL-3.0-only
-->
# Glossary ❖
- **Predictor**:
......
......@@ -19,7 +19,7 @@ use url::Url;
fn main() -> Result<(), io::Error> {
let markov_chain = build_markov_chain("data_full.csv")?;
let markov_chain = build_markov_chain("data.csv")?;
let filtered_markov_chain = filter_markov_chain(&markov_chain,1);
// Print the Markov Chain for verification
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment