Dontopedia

Test Features (TF-IDF)

From Dontopedia, the open, paraconsistent wiki. (Last updated 2026-06-09.)

Test Features (TF-IDF) has 12 facts recorded in Dontopedia across 6 references, with 2 live disagreements.

12 facts·6 predicates·6 sources·2 in dispute

Mostly:rdf:type(5), derived from(2), shape(1)

Maturity scale raw canonical shape-checked rule-derived certified

Inbound mentions (7)

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.

consistsOfConsists of(2)

usesVariableUses Variable(2)

appliedOnApplied on(1)

appliedToApplied to(1)

calledWithCalled With(1)

Other facts (11)

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.

11 facts
PredicateValueRef
Rdf:typeMatrix[1]
Rdf:typeFeature Matrix[2]
Rdf:typeVariable[4]
Rdf:typeTest Feature Matrix[5]
Rdf:typeTest Features[6]
Derived FromVectorizer[3]
Derived FromX Test[3]
ShapeTest Feature Matrix[3]
Computed byVectorizer[4]
Input toModel[4]
Used byVoting Model[5]

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.

typebeam/1680fd31-ef75-4b8f-b41d-f9807171b358
ex:Matrix
typebeam/82542fdb-a2be-4da5-9db6-63ce30f861b6
ex:FeatureMatrix
derivedFrombeam/df11b3fa-ca37-4721-9ab9-c56d1bc73bf0
ex:vectorizer
derivedFrombeam/df11b3fa-ca37-4721-9ab9-c56d1bc73bf0
ex:X_test
shapebeam/df11b3fa-ca37-4721-9ab9-c56d1bc73bf0
ex:test_feature_matrix
typebeam/d3954c6e-57e2-4e9f-b834-ff3def382c8d
ex:Variable
computedBybeam/d3954c6e-57e2-4e9f-b834-ff3def382c8d
ex:vectorizer
inputTobeam/d3954c6e-57e2-4e9f-b834-ff3def382c8d
ex:model
typebeam/57063f8a-831c-4360-b1ef-31c5a88beadd
ex:TestFeatureMatrix
usedBybeam/57063f8a-831c-4360-b1ef-31c5a88beadd
ex:voting_model
typebeam/4b350633-6322-4093-993a-e7268aabef00
ex:TestFeatures
labelbeam/4b350633-6322-4093-993a-e7268aabef00
Test Features (TF-IDF)

References (6)

6 references
  1. ctx:claims/beam/1680fd31-ef75-4b8f-b41d-f9807171b358
    • full textbeam-chunk
      text/plain1 KBdoc:beam/1680fd31-ef75-4b8f-b41d-f9807171b358
      Show excerpt
      grid_search.fit(X_train_tfidf, y_train) # Best model best_model = grid_search.best_estimator_ # Make predictions predictions = best_model.predict(X_test_tfidf) # Calculate the recall score recall = recall_score(y_test, predictions) print
  2. ctx:claims/beam/82542fdb-a2be-4da5-9db6-63ce30f861b6
    • full textbeam-chunk
      text/plain1 KBdoc:beam/82542fdb-a2be-4da5-9db6-63ce30f861b6
      Show excerpt
      predictions = model.predict(X_test_tfidf) # Calculate the recall score recall = recall_score(y_test, predictions) print(f'Recall score: {recall:.3f}') # Print classification report and confusion matrix print(classification_report(y_test,
  3. ctx:claims/beam/df11b3fa-ca37-4721-9ab9-c56d1bc73bf0
    • full textbeam-chunk
      text/plain1 KBdoc:beam/df11b3fa-ca37-4721-9ab9-c56d1bc73bf0
      Show excerpt
      # Define a threshold to determine sparsity threshold = 10 # Example threshold return len(document.split()) < threshold df['is_sparse'] = df['text'].apply(is_sparse) # Separate sparse and dense documents sparse_df = df[df['is_
  4. ctx:claims/beam/d3954c6e-57e2-4e9f-b834-ff3def382c8d
    • full textbeam-chunk
      text/plain1 KBdoc:beam/d3954c6e-57e2-4e9f-b834-ff3def382c8d
      Show excerpt
      # Identify sparse and dense documents def is_sparse(document): # Define a threshold to determine sparsity threshold = 10 # Example threshold return len(document.split()) < threshold df['is_sparse'] = df['text'].apply(is_sparse
  5. ctx:claims/beam/57063f8a-831c-4360-b1ef-31c5a88beadd
    • full textbeam-chunk
      text/plain1 KBdoc:beam/57063f8a-831c-4360-b1ef-31c5a88beadd
      Show excerpt
      model1.fit(X_train_tfidf, y_train) model2.fit(X_train_tfidf, y_train) # Combine models using voting classifier voting_model = VotingClassifier(estimators=[('lr', model1), ('rf', model2)], voting='soft') voting_model.fit(X_train_tfidf, y_tr
  6. ctx:claims/beam/4b350633-6322-4093-993a-e7268aabef00
    • full textbeam-chunk
      text/plain1 KBdoc:beam/4b350633-6322-4093-993a-e7268aabef00
      Show excerpt
      # Train the model model.fit(X_train_tfidf, y_train) # Make predictions predictions = model.predict(X_test_tfidf) # Calculate the recall score recall = recall_score(y_test, predictions) print(f'Recall score: {recall:.3f}') # Print classif

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.