Instructions to use codeparrot/codeparrot-small-complexity-prediction with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use codeparrot/codeparrot-small-complexity-prediction with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="codeparrot/codeparrot-small-complexity-prediction")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("codeparrot/codeparrot-small-complexity-prediction") model = AutoModelForSequenceClassification.from_pretrained("codeparrot/codeparrot-small-complexity-prediction", device_map="auto") - Notebooks
- Google Colab
- Kaggle
metadata
license: apache-2.0
datasets: codeparrot/codecomplex
This is a fine-tuned version of codeparrot-small-multi, a 110M multilingual model for code generation, on CodeComplex, a dataset for complexity prediction of Java code.