omnigenome 0.3.13a0__py3-none-any.whl → 0.3.17a0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of omnigenome might be problematic. Click here for more details.
- omnigenome/__init__.py +7 -7
- {omnigenome-0.3.13a0.dist-info → omnigenome-0.3.17a0.dist-info}/METADATA +7 -6
- omnigenome-0.3.17a0.dist-info/RECORD +7 -0
- omnigenome-0.3.13a0.dist-info/RECORD +0 -7
- {omnigenome-0.3.13a0.dist-info → omnigenome-0.3.17a0.dist-info}/WHEEL +0 -0
- {omnigenome-0.3.13a0.dist-info → omnigenome-0.3.17a0.dist-info}/entry_points.txt +0 -0
- {omnigenome-0.3.13a0.dist-info → omnigenome-0.3.17a0.dist-info}/licenses/LICENSE +0 -0
- {omnigenome-0.3.13a0.dist-info → omnigenome-0.3.17a0.dist-info}/top_level.txt +0 -0
omnigenome/__init__.py
CHANGED
|
@@ -115,23 +115,23 @@ try:
|
|
|
115
115
|
from omnigenbench.src.trainer.accelerate_trainer import AccelerateTrainer
|
|
116
116
|
|
|
117
117
|
# Import hub utilities
|
|
118
|
-
from omnigenbench.utility.hub_utils import (
|
|
118
|
+
from omnigenbench.src.utility.hub_utils import (
|
|
119
119
|
download_benchmark,
|
|
120
120
|
download_model,
|
|
121
121
|
download_pipeline,
|
|
122
122
|
query_models_info,
|
|
123
123
|
)
|
|
124
|
-
from omnigenbench.utility import hub_utils
|
|
124
|
+
from omnigenbench.src.utility import hub_utils
|
|
125
125
|
|
|
126
126
|
# Import hub classes
|
|
127
|
-
from omnigenbench.utility.model_hub.model_hub import ModelHub
|
|
128
|
-
from omnigenbench.utility.dataset_hub
|
|
129
|
-
from omnigenbench.utility.pipeline_hub
|
|
130
|
-
from omnigenbench.utility.pipeline_hub.pipeline_hub import PipelineHub
|
|
127
|
+
from omnigenbench.src.utility.model_hub.model_hub import ModelHub
|
|
128
|
+
from omnigenbench.src.utility.dataset_hub import load_benchmark_datasets
|
|
129
|
+
from omnigenbench.src.utility.pipeline_hub import Pipeline
|
|
130
|
+
from omnigenbench.src.utility.pipeline_hub.pipeline_hub import PipelineHub
|
|
131
131
|
|
|
132
132
|
# Import module utilities
|
|
133
133
|
from omnigenbench.src.model.module_utils import OmniPooling
|
|
134
|
-
from omnigenbench.utility
|
|
134
|
+
from omnigenbench.src.utility import VoteEnsemblePredictor
|
|
135
135
|
|
|
136
136
|
# For backward compatibility version 0.2.7alpha and earlier
|
|
137
137
|
from omnigenbench.auto.config.auto_config import AutoBenchConfig
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omnigenome
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.17a0
|
|
4
4
|
Summary: OmniGenome: A comprehensive toolkit for genome analysis.
|
|
5
5
|
Home-page: https://github.com/yangheng95/OmniGenBench
|
|
6
6
|
Author: Yang, Heng
|
|
@@ -145,7 +145,8 @@ seeds = [0, 1, 2, 3, 4]
|
|
|
145
145
|
bench = AutoBench(benchmark=benchmark, model_name_or_path=gfm, overwrite=False)
|
|
146
146
|
bench.run(autocast=False, batch_size=bench_size, seeds=seeds)
|
|
147
147
|
```
|
|
148
|
-
You can find an example of AutoBench via Python API [here](examples/
|
|
148
|
+
You can find an example of AutoBench via Python API [here](examples/autobench_gfm_evaluation/benchmarking_with_lora.ipynb).
|
|
149
|
+
|
|
149
150
|
|
|
150
151
|
## Supported Models
|
|
151
152
|
|
|
@@ -187,9 +188,9 @@ RNA design is a fundamental problem in synthetic biology,
|
|
|
187
188
|
where the goal is to design RNA sequences that fold into a target structure.
|
|
188
189
|
In this demo, we show how to use OmniGenoBench to design RNA sequences
|
|
189
190
|
that fold into a target structure using a pre-trained model.
|
|
190
|
-
The tutorials of RNA Design Demo can be found in [RNA_Design_Tutorial.ipynb](examples/
|
|
191
|
+
The tutorials of RNA Design Demo can be found in [RNA_Design_Tutorial.ipynb](examples/rna_sequence_design/RNA_Design_Tutorial.ipynb).
|
|
191
192
|
|
|
192
|
-
You can find a visual example of RNA Design [here](asset/
|
|
193
|
+
You can find a visual example of RNA Design [here](asset/RNADesign-Demo.gif).
|
|
193
194
|
|
|
194
195
|
### RNA Secondary Structure Prediction
|
|
195
196
|
|
|
@@ -199,10 +200,10 @@ In this demo, we show how to use OmniGenoBench to predict the secondary structur
|
|
|
199
200
|
The tutorials of RNA Secondary Structure Prediction can be found in
|
|
200
201
|
[Secondary_Structure_Prediction_Tutorial.ipynb](examples/rna_secondary_structure_prediction/Secondary_Structure_Prediction_Tutorial.ipynb).
|
|
201
202
|
|
|
202
|
-
You can find a visual example of RNA Secondary Structure Prediction [here](asset/
|
|
203
|
+
You can find a visual example of RNA Secondary Structure Prediction [here](asset/RNASSP-Demo.gif).
|
|
203
204
|
|
|
204
205
|
### More Tutorials
|
|
205
|
-
Please find more usage tutorials in [examples
|
|
206
|
+
Please find more usage tutorials in [examples](examples).
|
|
206
207
|
|
|
207
208
|
## Citation
|
|
208
209
|
```bibtex
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
omnigenome/__init__.py,sha256=2JNoPrnv-1lYXkBiuHBYVXp1OJiRD8c9j65qFeXJtQY,9436
|
|
2
|
+
omnigenome-0.3.17a0.dist-info/licenses/LICENSE,sha256=oQoefBV6siHctF0ET-OO3EaSZgtqGtf-wdIAmokS8iY,11560
|
|
3
|
+
omnigenome-0.3.17a0.dist-info/METADATA,sha256=HpqOJcHgtAxMEpC9x8-21bQvAL5yfZ-7BNKmTRT23ow,10344
|
|
4
|
+
omnigenome-0.3.17a0.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
5
|
+
omnigenome-0.3.17a0.dist-info/entry_points.txt,sha256=uu40UgMPxY65ASdRbrhkwH94r7CIYgyG_iDBmqFQbD8,84
|
|
6
|
+
omnigenome-0.3.17a0.dist-info/top_level.txt,sha256=LVFxm_WPaxjj9KnAqdW94W4D4lbOk30gdsaKlJiSzTo,11
|
|
7
|
+
omnigenome-0.3.17a0.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
omnigenome/__init__.py,sha256=Y3th9B_5xrJkzFXgR07FxSWP54NvuxD3XoJ17U5Db7s,9438
|
|
2
|
-
omnigenome-0.3.13a0.dist-info/licenses/LICENSE,sha256=oQoefBV6siHctF0ET-OO3EaSZgtqGtf-wdIAmokS8iY,11560
|
|
3
|
-
omnigenome-0.3.13a0.dist-info/METADATA,sha256=RZUK9vITBe9JlgliyCfzhfdyOvMch8gyJkWVFGljG6k,10343
|
|
4
|
-
omnigenome-0.3.13a0.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
5
|
-
omnigenome-0.3.13a0.dist-info/entry_points.txt,sha256=uu40UgMPxY65ASdRbrhkwH94r7CIYgyG_iDBmqFQbD8,84
|
|
6
|
-
omnigenome-0.3.13a0.dist-info/top_level.txt,sha256=LVFxm_WPaxjj9KnAqdW94W4D4lbOk30gdsaKlJiSzTo,11
|
|
7
|
-
omnigenome-0.3.13a0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|