misinfo_detection_app / src /OstreaCultura.jl
=
Add compression and decompression functions for fact check data; update dependencies and remove obsolete files
fd342b4
raw
history blame contribute delete
627 Bytes
## OSTREA
module OstreaCultura
@info "Loading OstreaCultura.jl"
using JSON3, Dates, Sqids, CSV, DataFrames, StatsBase, Distances, PyCall
using CodecZlib
import Pandas.DataFrame as pdataframe
export MiniEncoder
## Load the FC Dataset
#const fc = CSV.read("data/fact_check_latest.csv", DataFrame)
#const fc_embed = OC.dfdat_to_matrix(fc, :Embeddings)
#export multi_embeddings, DataLoader, df_to_pd, pd_to_df, create_pinecone_context
#include("Narrative.jl")
#include("NarrativeClassification.jl")
include("py_init.jl")
include("Embeddings.jl")
include("PyPineCone.jl")
include("compress.jl")
#include("Models.jl")
end