Vinay15's picture
Update app.py
b215f2c verified
raw
history blame
878 Bytes
from flask import Flask, request, jsonify
from transformers import AutoTokenizer, AutoModel
app = Flask(__name__)
# Load model and tokenizer
try:
tokenizer = AutoTokenizer.from_pretrained('stepfun-ai/GOT-OCR2_0', revision='cf6b7386bc89a54f09785612ba74cb12de6fa17c', trust_remote_code=True)
model = AutoModel.from_pretrained('stepfun-ai/GOT-OCR2_0', revision='cf6b7386bc89a54f09785612ba74cb12de6fa17c', trust_remote_code=True)
except Exception as e:
print(f"Error loading model and tokenizer: {e}")
@app.route('/predict', methods=['POST'])
def predict():
# Assuming you send image data in the request
data = request.json
# Add your model inference logic here
# e.g., model.forward(data)
return jsonify({"message": "Prediction made successfully!"})
if __name__ == "__main__":
app.run(host='0.0.0.0', port=5000) # Adjust port if necessary