Instructions to use RNAcentral/genes-from-transcripts with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Scikit-learn
How to use RNAcentral/genes-from-transcripts with Scikit-learn:
import joblib from skops.hub_utils import download download("RNAcentral/genes-from-transcripts", "path_to_folder") model = joblib.load( "model_fold_2.pkl" ) # only load pickle files from sources you trust # read more about it here https://skops.readthedocs.io/en/stable/persistence.html - Notebooks
- Google Colab
- Kaggle
File size: 1,019 Bytes
a7db57c 90bef95 a7db57c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | {
"sklearn": {
"columns": [
"x0",
"x1",
"x2",
"x3",
"x4",
"x5"
],
"environment": [
"scikit-learn"
],
"example_input": {
"x0": [
0.0,
0.9278350515463918,
0.0
],
"x1": [
59199.0,
7.0,
744.0
],
"x2": [
59047.0,
0.0,
790.0
],
"x3": [
0.0,
28.0,
8.0
],
"x4": [
0.0,
1.0,
1.0
],
"x5": [
1.0,
1.0,
1.0
]
},
"model": {
"file": "model_fold_2.pkl"
},
"model_format": "pickle",
"task": "tabular-classification"
}
} |