erdemonal commited on
Commit
5734cca
·
verified ·
1 Parent(s): f97b42e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -11
README.md CHANGED
@@ -12,30 +12,32 @@ datasets:
12
 
13
  # SemanticGAN
14
 
15
- This repository serves as the persistent model and data store for the SemanticGAN project.
16
 
17
- The model is trained using a continuous learning pipeline executed via GitHub Actions. Due to storage and consistency constraints, trained model parameters and processed knowledge graph files are hosted on the Hugging Face Hub rather than committed directly to the source repository.
18
 
19
  ## Project Context
20
 
21
- SemanticGAN is a research prototype for Knowledge Graph Completion based on a Wasserstein Generative Adversarial Network. The model is trained on the DBLP Computer Science Bibliography and generates candidate RDF triples representing plausible but previously unobserved relations.
22
 
23
- The corresponding source code, training pipeline, and documentation are maintained in the GitHub repository at https://github.com/erdemonal11/SemanticGAN.
 
24
 
25
- A live dashboard presenting training metrics and generated outputs is available at https://erdemonal11.github.io/SemanticGAN.
 
26
 
27
  ## Repository Contents
28
 
29
- This repository contains the evolving state of the continuous learning system.
30
 
31
- The file `gan_latest.pth` stores the most recent Generator and Discriminator parameters.
32
 
33
- The file `kg_triples_ids.txt` contains the processed knowledge graph triples represented as integer identifiers.
34
 
35
- The file `kg_mappings.json` provides the mapping between raw entity and relation labels and their corresponding identifiers.
36
 
37
- These files are updated automatically after each training run and are intended to be consumed by the training and evaluation scripts in the GitHub repository.
38
 
39
  ## Intended Usage
40
 
41
- This repository is not intended for standalone inference. The model artifacts are designed to be used in conjunction with the training and evaluation pipeline provided in the associated GitHub project.
 
12
 
13
  # SemanticGAN
14
 
15
+ This repository is used as the persistent storage for model checkpoints and processed data produced by the SemanticGAN project.
16
 
17
+ Training is performed through a continuous learning pipeline executed via GitHub Actions.
18
 
19
  ## Project Context
20
 
21
+ SemanticGAN is a research prototype for Knowledge Graph Completion built around a Wasserstein Generative Adversarial Network. The model is trained on the DBLP Computer Science Bibliography and is designed to generate candidate RDF triples that correspond to plausible but previously unobserved relations in the graph.
22
 
23
+ All source code, training scripts, and technical documentation are maintained in the main GitHub repository at
24
+ https://github.com/erdemonal11/SemanticGAN
25
 
26
+ A live dashboard showing training metrics and generated outputs is available at
27
+ https://erdemonal11.github.io/SemanticGAN
28
 
29
  ## Repository Contents
30
 
31
+ This repository reflects the current state of the continuous learning process.
32
 
33
+ The file `gan_latest.pth` contains the most recent Generator and Discriminator parameters produced by the training pipeline.
34
 
35
+ The file `kg_triples_ids.txt` stores the processed knowledge graph triples in integer encoded form.
36
 
37
+ The file `kg_mappings.json` defines the mapping between raw entity and relation labels and their corresponding numeric identifiers.
38
 
39
+ These artifacts are updated automatically after each training run and are consumed by the training and evaluation scripts in the GitHub repository.
40
 
41
  ## Intended Usage
42
 
43
+ This repository is not meant to be used for standalone inference. The stored model artifacts are intended to be loaded by the training and evaluation pipeline defined in the main SemanticGAN project, where checkpoint restoration and continued optimization are handled automatically.