pangweijlu commited on
Commit
9c30641
·
verified ·
1 Parent(s): 0233d27

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # Multimodal Fraudulent Paper Detection Framework
2
 
3
  A deep learning system that detects fraudulent scientific papers by analyzing **text**, **images**, **tabular data**, and **metadata** simultaneously. It also identifies **paper mills** through clustering analysis.
@@ -98,3 +102,23 @@ If you use this framework, please cite:
98
  ## License
99
 
100
  MIT License
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # Multimodal Fraudulent Paper Detection Framework
6
 
7
  A deep learning system that detects fraudulent scientific papers by analyzing **text**, **images**, **tabular data**, and **metadata** simultaneously. It also identifies **paper mills** through clustering analysis.
 
102
  ## License
103
 
104
  MIT License
105
+
106
+ <!-- ml-intern-provenance -->
107
+ ## Generated by ML Intern
108
+
109
+ This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
110
+
111
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
112
+ - Source code: https://github.com/huggingface/ml-intern
113
+
114
+ ## Usage
115
+
116
+ ```python
117
+ from transformers import AutoModelForCausalLM, AutoTokenizer
118
+
119
+ model_id = "pangweijlu/multimodal-fraud-detection"
120
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
121
+ model = AutoModelForCausalLM.from_pretrained(model_id)
122
+ ```
123
+
124
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.