Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HICAI-ZJU/KANO
/ types & classes
Types & classes
46 in github.com/HICAI-ZJU/KANO
⨍
Functions
355
◇
Types & classes
46
↳
Endpoints
2
↓ 28 callers
Class
MoleculeDataset
A MoleculeDataset contains a list of molecules and their associated features and targets.
chemprop/data/data.py:96
↓ 16 callers
Class
Vertex
KGembedding/owl2vec_star/rdf2vec/graph.py:4
↓ 5 callers
Class
StandardScaler
A StandardScaler normalizes a dataset. When fit on a dataset, the StandardScaler learns the mean and standard deviation across the 0th axis.
chemprop/data/scaler.py:6
↓ 3 callers
Class
OntologyProjection
Light ontology projection tailored to OWL2Vec PARAMETERS: 0. urionto: URI of the ontology to project 1. reasoner Reasoner.STRUC
KGembedding/owl2vec_star/lib/Onto_Projection.py:22
↓ 3 callers
Class
RDF2VecTransformer
Project random walks or subtrees in graphs into embeddings, suited for classification. Parameters ---------- vector_size: int (defaul
KGembedding/owl2vec_star/rdf2vec/embed.py:11
↓ 3 callers
Class
RandomWalker
KGembedding/owl2vec_star/rdf2vec/walkers/random.py:7
↓ 2 callers
Class
AttentionLayer
chemprop/models/model.py:169
↓ 2 callers
Class
Identity
Identity PyTorch module.
chemprop/nn_utils.py:93
↓ 2 callers
Class
KnowledgeGraph
KGembedding/owl2vec_star/rdf2vec/graph.py:31
↓ 2 callers
Class
MoleculeDatapoint
A MoleculeDatapoint contains a single molecule and its associated features and targets.
chemprop/data/data.py:15
↓ 2 callers
Class
MoleculeModel
A MoleculeModel is a model which contains a message passing network following by feed-forward layers.
chemprop/models/model.py:18
↓ 2 callers
Class
OntologyAccess
classdocs
KGembedding/owl2vec_star/lib/Onto_Access.py:20
↓ 2 callers
Class
WeisfeilerLehmanWalker
KGembedding/owl2vec_star/rdf2vec/walkers/weisfeiler_lehman.py:7
↓ 1 callers
Class
AnnotationURIs
This class manages the most common ontology annotations
KGembedding/owl2vec_star/lib/Onto_Annotations.py:8
↓ 1 callers
Class
AnonymousWalker
KGembedding/owl2vec_star/rdf2vec/walkers/anonymous.py:7
↓ 1 callers
Class
BatchGRU
chemprop/models/cmpn.py:154
↓ 1 callers
Class
BatchMolGraph
A BatchMolGraph represents the graph structure and featurization of a batch of molecules. A BatchMolGraph contains the attributes of a MolGr
chemprop/features/featurization.py:319
↓ 1 callers
Class
CMPN
chemprop/models/cmpn.py:198
↓ 1 callers
Class
CMPNEncoder
chemprop/models/cmpn.py:15
↓ 1 callers
Class
CommunityWalker
KGembedding/owl2vec_star/rdf2vec/walkers/community.py:24
↓ 1 callers
Class
ContrastiveLoss
chemprop/models/loss/loss.py:10
↓ 1 callers
Class
DefaultLookupDict
chemprop/torchlight/vocab.py:18
↓ 1 callers
Class
HalkWalker
KGembedding/owl2vec_star/rdf2vec/walkers/halk.py:7
↓ 1 callers
Class
LSTM4VarLenSeq
chemprop/torchlight/module.py:14
↓ 1 callers
Class
LogFormatter
chemprop/torchlight/logger.py:18
↓ 1 callers
Class
MPN
An :class:`MPN` is a wrapper around :class:`MPNEncoder` which featurizes input as needed.
chemprop/models/mpn.py:137
↓ 1 callers
Class
MPNEncoder
An :class:`MPNEncoder` is a message passing neural network for encoding a molecule.
chemprop/models/mpn.py:15
↓ 1 callers
Class
MolGraph
A MolGraph represents the graph structure and featurization of a single molecule. A MolGraph computes the following attributes: - smiles
chemprop/features/featurization.py:167
↓ 1 callers
Class
NCESoftmaxLoss
chemprop/models/loss/loss_computer.py:6
↓ 1 callers
Class
NGramWalker
KGembedding/owl2vec_star/rdf2vec/walkers/ngrams.py:7
↓ 1 callers
Class
NoamLR
Noam learning rate scheduler with piecewise linear increase and exponential decay. The learning rate increases linearly from init_lr to max_
chemprop/nn_utils.py:136
↓ 1 callers
Class
PRMetric
Calculates the precision and recall. - `update` must receive output of the form `(y_pred, y)`. - `y_pred` must be in the following shape
chemprop/torchlight/metric.py:84
↓ 1 callers
Class
PromptGeneratorOutput
chemprop/models/model.py:224
↓ 1 callers
Class
Prompt_generator
chemprop/models/model.py:196
↓ 1 callers
Class
WalkletWalker
KGembedding/owl2vec_star/rdf2vec/walkers/walklets.py:6
Class
CategoricalAccuracy
Calculates the categorical accuracy. - `update` must receive output of the form `(y_pred, y)`. - `y_pred` must be in the following shape
chemprop/torchlight/metric.py:53
Class
DBpediaOntology
KGembedding/owl2vec_star/lib/Onto_Access.py:333
Class
Evaluator
KGembedding/owl2vec_star/lib/Evaluator.py:12
Class
FlatNCE
chemprop/models/loss/loss.py:33
Class
FlatNCE
chemprop/models/loss/loss_computer.py:19
Class
Metric
Abstract Base class (ABC) for all Metrics. Taken from https://github.com/pytorch/ignite/metrics/metric.py and modify a bit. Often
chemprop/torchlight/metric.py:7
Class
Reasoner
KGembedding/owl2vec_star/lib/Onto_Access.py:13
Class
SchemaOrgOntology
KGembedding/owl2vec_star/lib/Onto_Access.py:359
Class
Vocabulary
Define a vocabulary object that will be used to numericalize a field. Attributes: token2id: A collections.defaultdict instance mappin
chemprop/torchlight/vocab.py:27
Class
Walker
KGembedding/owl2vec_star/rdf2vec/walkers/walker.py:3
Class
WildcardWalker
KGembedding/owl2vec_star/rdf2vec/walkers/wildcard.py:8