DeepAnalyze
Collection
4 items • Updated • 2
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("RUC-DataLab/DeepAnalyze-8B", dtype="auto")Configuration Parsing Warning:Config file config.json cannot be fetched (too big)
Configuration Parsing Warning:Config file tokenizer_config.json cannot be fetched (too big)
Authors: Shaolei Zhang, Ju Fan*, Meihao Fan, Guoliang Li, Xiaoyong Du
DeepAnalyze is the first agentic LLM for autonomous data science. It can autonomously complete a wide range of data-centric tasks without human intervention, supporting:
More information refer to DeepAnalyze's Repo
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="RUC-DataLab/DeepAnalyze-8B")