erdemonal commited on
Commit
47e8754
·
verified ·
1 Parent(s): ecdd58e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -27
README.md CHANGED
@@ -2,39 +2,22 @@
2
  license: gpl-3.0
3
  tags:
4
  - knowledge-graph
5
- - rdf
6
  - wgan
7
- - gan
8
  datasets:
9
  - erdemonal/SemanticGAN-Dataset
10
  ---
11
 
12
- # SemanticGAN
13
 
14
- This repository is used as the persistent storage for model checkpoints and processed data produced by the SemanticGAN project.
15
 
16
- Training is performed through a continuous learning pipeline executed via GitHub Actions.
17
 
18
- ## Project Context
 
 
19
 
20
- 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.
21
-
22
- All source code, training scripts, and technical documentation are maintained in the main GitHub repository at
23
- https://github.com/erdemonal/SemanticGAN
24
-
25
- A live dashboard showing training metrics and generated outputs is available at
26
- https://erdemonal.github.io/SemanticGAN
27
-
28
- ## Repository Contents
29
-
30
- This repository reflects the current state of the training process.
31
-
32
- The file `gan_latest.pth` contains the most recent Generator and Discriminator parameters produced by the training pipeline.
33
-
34
- The processed dataset `kg_triples_ids.txt` and ID mappings `kg_mappings.json` have been moved to the [SemanticGAN-Dataset](https://huggingface.co/datasets/erdemonal/SemanticGAN-Dataset) repository.
35
-
36
- These artifacts are updated automatically after each training run and are consumed by the training and evaluation scripts in the GitHub repository.
37
-
38
- ## Intended Usage
39
-
40
- 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. The pipeline automatically pulls the required data from the companion Dataset repository before starting each training run.
 
2
  license: gpl-3.0
3
  tags:
4
  - knowledge-graph
 
5
  - wgan
6
+ - dblp
7
  datasets:
8
  - erdemonal/SemanticGAN-Dataset
9
  ---
10
 
11
+ # SemanticGAN Model Repository
12
 
13
+ This repository contains trained model checkpoints and training logs produced during the SemanticGAN experiments.
14
 
15
+ The models are trained on the DBLP bibliographic knowledge graph using a Wasserstein Generative Adversarial Network (WGAN). The repository is intended as an archival artifact supporting reproducibility and analysis, rather than as a standalone inference package.
16
 
17
+ ## Contents
18
+ - gan_latest.pth: latest generator and discriminator checkpoint
19
+ - training_log.csv: recorded loss values across training epochs
20
 
21
+ ## References
22
+ - Source code and training pipeline: https://github.com/erdemonal/SemanticGAN
23
+ - Experimental monitoring interface: https://erdemonal.github.io/SemanticGAN