1from ucimlrepo import fetch_ucirepo
2fetch dataset
3breast_cancer_wisconsin_original = fetch_ucirepo(id=15)
4
5data (as pandas dataframes)
6X = breast_cancer_wisconsin_original.data.features
7y = breast_cancer_wisconsin_original.data.targets
8
9metadata
10print(breast_cancer_wisconsin_original.metadata)
11
12variable information
13print(breast_cancer_wisconsin_original.variables)
1git lfs install
2
3git clone https://huggingface.co/zeroMN/SHMT.git
The model can be fine-tuned for specific tasks such as visual question answering (VQA), image captioning, and audio recognition.
The Evolved Multimodal Model is not suitable for tasks that require high expertise or domain-specific expertise beyond its current capabilities. The number of speech frames still needs to be fine-tuned by yourself.
Users (both direct and downstream) should be made aware of the following risks, biases, and limitations:
1# Use a pipeline as a high-level helper
2from transformers import pipeline
3
4pipe = pipeline("text-generation", model="zeroMN/SHMT")
1# Load model directly
2from transformers import AutoModel
3model = AutoModel.from_pretrained("zeroMN/SHMT")