matlok commited on
Commit
5d085b1
1 Parent(s): 77d7aeb

syncing readme updates

Browse files
Files changed (1) hide show
  1. README.md +82 -1
README.md CHANGED
@@ -1,3 +1,84 @@
1
  ---
2
- license: unknown
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license:
3
+ - other
4
+ pretty_name: >-
5
+ python copilot image training using inheritance and polymorphism knowledge graphs
6
+ dataset_info:
7
+ - config_name: view_schema
8
+ splits:
9
+ - name: schema
10
+ configs:
11
+ - config_name: view_schema
12
+ data_files:
13
+ - split: view_schema
14
+ path: files/lok-python-copilot-img.base-v1-00000610.parquet
15
+ size_categories:
16
+ - 100K<n<1M
17
+ tags:
18
+ - python-copilot
19
+ - python-coding
20
+ - python-architecture
21
+ - knowledge-graphs
22
+ - multimodal
23
+ - text-image-audio
24
+ - fine-tuning
25
+ - training
26
+ - question-answering
27
+ - image-knowledge-graph
28
+ - alpaca
29
+ - mp3
30
+ - png
31
+ - text
32
+ - instruct
33
+ - base_class
34
+ - base_classes
35
+ - inheritance
36
+ - polymorphism
37
+ # supported task_categories
38
+ # text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, conversational, feature-extraction, text-generation, text2text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-retrieval, time-series-forecasting, text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, other
39
+ task_categories:
40
+ - text-to-image
41
+ - image-to-image
42
+ - question-answering
43
+ # supported task_ids
44
+ # acceptability-classification, entity-linking-classification, fact-checking, intent-classification, language-identification, multi-class-classification, multi-label-classification, multi-input-text-classification, natural-language-inference, semantic-similarity-classification, sentiment-classification, topic-classification, semantic-similarity-scoring, sentiment-scoring, sentiment-analysis, hate-speech-detection, text-scoring, named-entity-recognition, part-of-speech, parsing, lemmatization, word-sense-disambiguation, coreference-resolution, extractive-qa, open-domain-qa, closed-domain-qa, news-articles-summarization, news-articles-headline-generation, dialogue-generation, dialogue-modeling, language-modeling, text-simplification, explanation-generation, abstractive-qa, open-domain-abstractive-qa, closed-domain-qa, open-book-qa, closed-book-qa, slot-filling, masked-language-modeling, keyword-spotting, speaker-identification, audio-intent-classification, audio-emotion-recognition, audio-language-identification, multi-label-image-classification, multi-class-image-classification, face-detection, vehicle-detection, instance-segmentation, semantic-segmentation, panoptic-segmentation, image-captioning, image-inpainting, image-colorization, super-resolution, grasping, task-planning, tabular-multi-class-classification, tabular-multi-label-classification, tabular-single-column-regression, rdf-to-text, multiple-choice-qa, multiple-choice-coreference-resolution, document-retrieval, utterance-retrieval, entity-linking-retrieval, fact-checking-retrieval, univariate-time-series-forecasting, multivariate-time-series-forecasting, visual-question-answering, document-question-answering
45
+ task_ids:
46
+ - parsing
47
  ---
48
+
49
+ ## Python Copilot Image Training using Inheritance and Polymorphism Knowledge Graphs
50
+
51
+ This dataset is a subset of the matlok python copilot datasets. Please refer to the [Multimodal Python Copilot Training Overview](https://huggingface.co/datasets/matlok/multimodal-python-copilot-training-overview) for more details on how to use this dataset.
52
+
53
+ ### Details
54
+
55
+ Each row contains a png file in the **dbytes** column.
56
+
57
+ - Rows: 259017
58
+ - Size: 135.2 GB
59
+ - Data type: png
60
+ - Format: Knowledge graph using NetworkX with alpaca text box
61
+
62
+ ### Schema
63
+
64
+ The png is in the **dbytes** column:
65
+
66
+ ```
67
+ {
68
+ "dbytes": "binary",
69
+ "dbytes_len": "int64",
70
+ "dbytes_mb": "float64",
71
+ "filename": "string",
72
+ "path": "string",
73
+ "repo": "string",
74
+ "type": "string"
75
+ }
76
+ ```
77
+
78
+ ### How to use the dataset
79
+
80
+ ```python
81
+ from datasets import load_dataset
82
+
83
+ ds = load_dataset("matlok/python-image-copilot-training-using-inheritance-knowledge-graphs", data_dir="files")
84
+ ```