corpus.csv
From Dontopedia, the open, paraconsistent wiki. (Last updated 2026-06-11.)
corpus.csv has 22 facts recorded in Dontopedia across 10 references, with 2 live disagreements.
Mostly:rdf:type(7), assumed columns(2), proposed context(1)
Maturity scale
raw canonical shape-checked rule-derived certifiedInbound mentions (15)
Other subjects in dontopedia point AT this entity as a value. These are inverse relationships — e.g. "X motherOf this subject" — and answer questions the forward facts can't. Grouped by predicate.
readsFromReads From(3)
- Load Labels Function
ex:load-labels-function - Load Query Logs
ex:load-query-logs - Plot Step
ex:plot-step
characterizesCharacterizes(1)
- Foxhop
ex:foxhop
ex:readsFileEx:reads File(1)
- Analyze Corpus
ex:analyze-corpus
isTransformedIntoIs Transformed Into(1)
- Dataset
ex:dataset
parameterParameter(1)
- Read Csv
ex:read_csv
processesDataFromProcesses Data From(1)
- Code Example
ex:code-example
proposesProposes(1)
- Lisamegawatts
ex:lisamegawatts
readsReads(1)
- Pandas Read Csv
ex:pandas-read-csv
requiresCreatingRequires Creating(1)
- Structure Dataset Step
ex:structure-dataset-step
startsWithStarts With(1)
- Data Flow
ex:data-flow
storedAsStored As(1)
- Query Logs
ex:query-logs
usesCsvFileUses Csv File(1)
- Plot Configuration
ex:plot-configuration
writesToWrites to(1)
- Write File Step
ex:writeFile-step
Other facts (21)
The long tail: predicates that appear too rarely to warrant their own section. Filter or scroll to find a specific one. Each row links to its source.
| Predicate | Value | Ref |
|---|---|---|
| Rdf:type | File Format | [1] |
| Rdf:type | Csv File | [3] |
| Rdf:type | Data Storage Format | [4] |
| Rdf:type | Data File | [5] |
| Rdf:type | File Format | [7] |
| Rdf:type | Input Source | [8] |
| Rdf:type | Data File | [9] |
| Assumed Columns | Query Time | [6] |
| Assumed Columns | Error | [6] |
| Proposed Context | optimal solution | [2] |
| Characterized As | excellent transport & storage structure | [2] |
| Contains Single Value | true | [3] |
| Used by Plot | Plot Configuration | [3] |
| Named by Metric | metricName | [3] |
| Written by | Write File Step | [4] |
| Read by | Plot Step | [4] |
| Ex:input to | Analyze Corpus | [5] |
| Used by | Load Query Logs | [7] |
| Stores | Query Logs | [7] |
| Is Output of | Structure Dataset Step | [9] |
| Is Source of | Data Object | [10] |
Timeline
Timeline axis is valid_time — when each source says the fact was true in the world, not when Dontopedia learned about it. Retracted rows are kept for provenance; coloured stripes indicate the context kind.
References (10)
ctx:claims/beam/e3b7ad28-c610-499f-b527-47a2d7f6872f- full textbeam-chunktext/plain1 KB
doc:beam/e3b7ad28-c610-499f-b527-47a2d7f6872fShow excerpt
Let's walk through an example that combines semi-supervised learning and active learning to handle documents without clear labels. #### Step 1: Load and Prepare Data ```python import os import re import pandas as pd from sklearn.feature_e…
ctx:discord/blah/general/142- full textgeneral-142text/plain3 KB
doc:agent/general-142/d5fb982b-0993-489d-a6ff-68f546098e0cShow excerpt
[2026-04-25 11:44] traves_theberge: <@806444151422976035> dont be a bitch! [2026-04-26 04:33] _slava_cm: "I really don't like Supabase/Firebase, as it is just a layer over PostgreSQL for people that don't want to deal with infrastructure. …
ctx:claims/beam/5d0f96d0-b8c5-4fb8-8c16-438b98357c5b- full textbeam-chunktext/plain1 KB
doc:beam/5d0f96d0-b8c5-4fb8-8c16-438b98357c5bShow excerpt
} } stage('Deploy') { steps { script { try { sh """ source ${SCRIPT_PATH} deploy_to_product…
ctx:claims/beam/9978289d-1122-46be-aed7-c3112d3dbb0c- full textbeam-chunktext/plain1 KB
doc:beam/9978289d-1122-46be-aed7-c3112d3dbb0cShow excerpt
- Use a `try-catch` block to execute each stage and record whether it was successful or not. - Write the success rate (1 for success, 0 for failure) to a CSV file using the `writeFile` step. 2. **Plotting Metrics**: - Use the `plo…
ctx:claims/beam/8481d5cc-fb17-4c80-9a11-b145c8881707- full textbeam-chunktext/plain1 KB
doc:beam/8481d5cc-fb17-4c80-9a11-b145c8881707Show excerpt
mapping["mappings"]["properties"][field] = {"type": "text"} # Create the index with the defined mapping es.indices.create(index=index_name, body=mapping, ignore=400) def main(): corpus_path = 'path/to/corpus.csv' …
ctx:claims/beam/030958ff-4542-4c75-87d6-fc94dc83547fctx:claims/beam/297b71db-f9cd-413c-a139-1f259bfb09e5- full textbeam-chunktext/plain1 KB
doc:beam/297b71db-f9cd-413c-a139-1f259bfb09e5Show excerpt
avg_query_time, error_rate = calculate_performance(query_logs) # Print the results print(f"Average query time: {avg_query_time}") print(f"Error rate: {error_rate}") ``` ### Explanation #### Logging System 1. **Configure Logging**: - …
ctx:claims/beam/8bf9ec46-2c0a-4990-b74d-e0b079d65b51- full textbeam-chunktext/plain1 KB
doc:beam/8bf9ec46-2c0a-4990-b74d-e0b079d65b51Show excerpt
- Use `pd.read_csv` to load the documents into a `DataFrame`. 2. **Debugging Logic**: - Use boolean indexing to update the `'error'` column. This method is more efficient and works in place. 3. **Returning the Updated DataFrame**: …
ctx:claims/beam/4b0e94ef-084d-4363-8931-568f755392e6- full textbeam-chunktext/plain1 KB
doc:beam/4b0e94ef-084d-4363-8931-568f755392e6Show excerpt
true_vector = [doc in ground_truth_documents for doc in retrieved_documents] pred_vector = [True] * len(retrieved_documents) y_true.extend(true_vector) y_pred.extend(pred_vector) # Calculate precision and recall precision …
ctx:claims/beam/7a6d20d2-0f32-4ba7-b3bb-8b64e897ee99- full textbeam-chunktext/plain1 KB
doc:beam/7a6d20d2-0f32-4ba7-b3bb-8b64e897ee99Show excerpt
logging.error(f'Error in PostProcessor for text "{text}": {e}') return text # Define the evaluation function def evaluate_reformulation(stages, inputs, outputs): # Apply the reformulation stages to the inputs …
See also
Keep researching
Missing something or suspicious of what's here? Kick off a research session — a Claude agent will investigate, cite its sources, and file new facts into a dedicated context you can review before accepting into the shared view.