{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "1480d345", "metadata": {}, "outputs": [], "source": [ "import pythainlp.classify.param_free" ] }, { "cell_type": "code", "execution_count": 2, "id": "78fca9fa", "metadata": {}, "outputs": [], "source": [ "training_data = [\n", " (\"รายละเอียดตามนี้เลยค่าา ^^\", \"Neutral\"),\n", " (\"กลัวพวกมึงหาย อดกินบาบิก้อน\", \"Neutral\"),\n", " (\"บริการแย่มากก เป็นหมอได้ไง😤\", \"Negative\"),\n", " (\"ขับรถแย่มาก\", \"Negative\"),\n", " (\"ดีนะครับ\", \"Positive\"),\n", " (\"ลองแล้วรสนี้อร่อย... ชอบๆ\", \"Positive\"),\n", " (\"ฉันรู้สึกโกรธ เวลามือถือแบตหมด\", \"Negative\"),\n", " (\"เธอภูมิใจที่ได้ทำสิ่งดี ๆ และดีใจกับเด็ก ๆ\", \"Positive\"),\n", " (\"นี่เป็นบทความหนึ่ง\", \"Neutral\")\n", "]" ] }, { "cell_type": "code", "execution_count": 3, "id": "94c1495f", "metadata": {}, "outputs": [], "source": [ "model = pythainlp.classify.param_free.GzipModel(training_data)" ] }, { "cell_type": "code", "execution_count": 4, "id": "f4d047db", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'Positive'" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "model.predict(\"ฉันดีใจ\", k=1)" ] }, { "cell_type": "code", "execution_count": 5, "id": "5a97f0d3", "metadata": {}, "outputs": [], "source": [ "model.save(\"d.model\")" ] }, { "cell_type": "code", "execution_count": 6, "id": "6e183243", "metadata": {}, "outputs": [], "source": [ "model2 = pythainlp.classify.param_free.GzipModel(model_path=\"d.model\")" ] }, { "cell_type": "code", "execution_count": 7, "id": "b30af6f0", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'Positive'" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "model2.predict(x1=\"ฉันดีใจ\", k=1)" ] }, { "cell_type": "code", "execution_count": null, "id": "3e72a33b", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3.8.13 ('base')", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.13" }, "vscode": { "interpreter": { "hash": "a1d6ff38954a1cdba4cf61ffa51e42f4658fc35985cd256cd89123cae8466a39" } } }, "nbformat": 4, "nbformat_minor": 5 }