Transformers
Safetensors
brivangl commited on
Commit
5d40ee8
·
verified ·
1 Parent(s): 26f1810

Added readme template

Browse files
Files changed (1) hide show
  1. README.md +44 -6
README.md CHANGED
@@ -1,9 +1,47 @@
1
  ---
2
- tags:
3
- - pytorch_model_hub_mixin
4
- - model_hub_mixin
 
 
5
  ---
 
6
 
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Library: [More Information Needed]
9
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ datasets:
4
+ - imagenet1k
5
+ metrics:
6
+ - accuracy
7
  ---
8
+ # VGG-like Kolmogorov-Arnold Convolutional network with Gram polynomials
9
 
10
+ This model is a convolutional version of Kolmogorov-Arnold Network, originally presented in [1, 2], with architecture inspired by VGG11 model. Gram version of KAN originally presented in [3].
11
+
12
+ ## Model description
13
+
14
+ ## Intended uses & limitations
15
+
16
+ ### How to use
17
+
18
+ ```python
19
+
20
+ ```
21
+
22
+ ## Training data
23
+
24
+ ## Training procedure
25
+
26
+ ## Evaluation results
27
+
28
+ ### BibTeX entry and citation info
29
+
30
+ If you use this project in your research or wish to refer to the baseline results, please use the following BibTeX entry.
31
+
32
+ ```bibtex
33
+ @misc{torch-conv-kan,
34
+ author = {Ivan Drokin},
35
+ title = {Torch Conv KAN},
36
+ year = {2024},
37
+ publisher = {GitHub},
38
+ journal = {GitHub repository},
39
+ howpublished = {\url{https://github.com/IvanDrokin/torch-conv-kan}}
40
+ }
41
+ ```
42
+
43
+ ## References
44
+
45
+ - [1] Ziming Liu et al., "KAN: Kolmogorov-Arnold Networks", 2024, arXiv. https://arxiv.org/abs/2404.19756
46
+ - [2] https://github.com/KindXiaoming/pykan
47
+ - [3] https://github.com/Khochawongwat/GRAMKAN